@extends('provider.layout.app') @section('content')
@lang('provider.profile.profile') @lang('provider.profile.manage_documents') @lang('provider.profile.update_location') @lang('provider.profile.wallet_transaction') @if(config('constants.card')==1) @lang('provider.card.list') @endif @lang('provider.profile.transfer') @if(config('constants.referral')==1) @lang('provider.profile.refer_friend') @endif

@lang('provider.transfer') (@lang('provider.current_balance') : {{currency($wallet_balance)}})

@include('common.notify')
{{ 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'}}
@endsection @section('scripts') @endsection