@extends('admin.layouts.app') @section('title',get_setting('site_name').' Fund Transfer') @section('content')

{{__('All Bank Fund Transfer')}}

{{__('Fund Transfer')}}
{{--
--}} {{-- --}} {{--
--}}
@foreach($fund_transer as $key => $user) @if ($user != null) @endif @endforeach
{{__('#')}} {{__('Sender Account')}} {{__('Receiver Account')}} {{__('Transfer Amount')}} {{__('Reference')}}
{{ ($key+1) + ($fund_transer->currentPage() - 1)*$fund_transer->perPage() }} {{\App\Models\BankAccount::where('id',$user->sender_account)->value('account_no') }} {{\App\Models\BankAccount::where('id',$user->receiver_account)->value('account_no') }} {{single_price($user->amount)}} {{$user->reference}}
{{ $fund_transer->appends(request()->input())->links() }}
@endsection @section('modal') @include('modals.delete_modal') @endsection @section('script') @endsection