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