All Withdraws
List of all withdraws
@if(session()->has('success'))
{{ session('success') }}
@endif
@if(session()->has('error'))
{{ session('error') }}
@endif
Withdraws
Create NewRequested Amount | Requested From | Remaining Balance | Method | Charge | Fees | Request Date | Request Ip | Status | @if (auth()->user()->hasPermissionTo('manage all withdraws'))Action | @endif
---|---|---|---|---|---|---|---|---|---|
{{$withdraw->amount}} | @if (auth()->user()->hasPermissionTo('manage all withdraws')) {{$withdraw->user->name}} @else {{$withdraw->user->name}} @endif | {{$withdraw->remaining_balance}} | {{$withdraw->method}} | {{$withdraw->charge}} | {{$withdraw->fees}} | {{date('M d, Y h:i a',strtotime($withdraw->request_date))}} | {{$withdraw->request_ip}} | @if ($withdraw->status === 'pending') {{ $withdraw->status }} @elseif ($withdraw->status === 'accepted') {{ $withdraw->status }} @else {{ $withdraw->status }} @endif | @if (auth()->user()->hasPermissionTo('manage all withdraws'))@endif |