@extends('fleet.layout.base') @section('title', 'Fleet Wallet Transfer') @section('content')
Transfer Amount (@lang('provider.current_balance') : {{currency($wallet_balance)}})
{{ csrf_field() }}
@php($total=0) @foreach($pendinglist as $index=>$pending) @php($total+=$pending->amount) @endforeach
@lang('provider.sno') @lang('provider.transaction_ref') @lang('provider.datetime') @lang('provider.amount') @lang('provider.status')
{{$index+1}} {{$pending->alias_id}} {{$pending->created_at->diffForHumans()}} {{currency($pending->amount)}} {{$pending->status == 0 ? 'Pending' : 'Approved'}} @lang('provider.cancel')
@endsection @section('scripts') @endsection