{{ $title }}
{{-- Search filter --}}
@if (request()->get('par-page') !== 'all')
{{ __('SN') }} | {{ __('User') }} | {{ __('Method') }} | {{ __('Current Balance') }} | {{ __('Withdraw Amount') }} | {{ __('Status') }} | {{ __('Date') }} | {{ __('Action') }} |
---|---|---|---|---|---|---|---|
{{ ++$index }} | {{ $withdraw?->user?->name }} | {{ $withdraw->method }} | {{ currency($withdraw->current_amount) }} | {{ currency($withdraw->withdraw_amount) }} | @if ($withdraw->status == 'approved') {{ __('Success') }} @elseif ($withdraw->status == 'rejected') {{ __('Rejected') }} @else {{ __('Pending') }} @endif | {{ formatDate($withdraw->created_at) }} |
{{ $withdraws->onEachSide(0)->links() }}
@endif