@php $withdraws = \App\Models\Withdraw::query()->where('status' , 'requested')->orderByDesc('created_at')->take(5)->get(); @endphp @if($withdraws->count() > 0)
{{--
Last 5 Withdrawals
--}} {{-- --}}
Last 5 Pending Withdrawals
View All
@foreach($withdraws as $withdraw) @endforeach
Full name User Id Withdrawal Method Status Amount
{{ $withdraw->player->full_name }} {{ $withdraw->player->id}} {{ $withdraw->coin->symbol }} {{$withdraw->status }} {{ $withdraw->amount }}
@endif