@if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@if(\Session::has('error'))
{!! \Session::get('error') !!}
@endif
@if(\Session::has('success'))
{!! \Session::get('success') !!}
@endif
S.No. |
Type |
Amount |
Status |
Date |
@if(isset($client_transactions))
@foreach($client_transactions as $transaction)
{{$loop->iteration}} |
{{ucfirst($transaction->type)}} |
{{$transaction->amount}} |
@if($transaction->status == 'requested')
@elseif($transaction->status == 'approved')
@elseif($transaction->status == 'paid')
@elseif($transaction->status == 'withheld')
@endif
|
{{$transaction->date->format('d M, Y')}} |
@endforeach
@endif