@extends('layouts.instructor') @section('breadcrumb')

{{ __('Withdraw History') }}

@endsection @section('content')
{{ __('Transactions') }}
@if(count($withdraws))
@foreach($withdraws as $withdraw) @endforeach
{{ __('ID') }} {{ __('Date') }} {{ __('Amount') }} {{ __('Method') }} {{ __('Status') }} {{ __('Receipt') }}
#{{$withdraw->transection_id}} {{$withdraw->created_at->format("d M Y")}} @if(get_currency_placement() == 'after') {{$withdraw->amount}} {{ get_currency_symbol() }} @else {{ get_currency_symbol() }} {{$withdraw->amount}} @endif {!! getBeneficiaryDetails($withdraw->beneficiary) !!}
@if($withdraw->status == 1) {{ __('Complete') }} @endif @if($withdraw->status == 2) {{ __('Rejected') }} @endif @if($withdraw->status == '0') {{ __('Pending') }} @endif
{{\Illuminate\Support\Str::words($withdraw->note, 4)}}
@if($withdraw->status == 1) @else N/A @endif
{{$withdraws->links()}}
@else
img
{{ __('Empty Transactions') }}
@endif
@endsection