@extends('agent.layout.app') @section('title', 'Agent Wallet Transfer') @section('heading', "Valor de transferĂȘncia (".__('provider.current_balance') . ":" . currency($wallet_balance).")") @section('content')
{{-- {{route('fleet.requestamount')}} --}}
{{ 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