@extends('admin.layouts.app') @section('title',get_setting('site_name').' Cash Withdraw') @section('content')

{{__('All Bank Cash Withdraw')}}

{{__('Withdraw Cash')}}
{{__('Cash Withdraw')}}
{{--
--}} {{-- --}} {{--
--}}
@foreach($withdraws as $key => $user) @if ($user != null) @endif @endforeach
{{__('#')}} {{__('Bank Account No')}} {{__('Withdraw Amount')}} {{__('Reference')}}
{{ ($key+1) + ($withdraws->currentPage() - 1)*$withdraws->perPage() }} {{\App\Models\BankAccount::where('id',$user->bank_id)->value('account_no','account_type') }} {{$user->withdraw_amount}} {{$user->reference}}
{{ $withdraws->appends(request()->input())->links() }}
@endsection @section('modal') @include('modals.delete_modal') @endsection @section('script') @endsection