{{-- --}}
Money Transfer Orders
| # | Order# | Date | Customer | Receiver | Country | Bank | Amount | Is Paid | Status | Action |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $key + 1 }} |
ET{{ $row->id }}
Ref#: {{ $row->refrence }} |
{{ date('d M Y', strtotime($row->dated)) }} {{ date('H:i A', strtotime($row->dated)) }} |
{{ isset($row->user) ? $row->user->name : '-' }} | {{ $row->receiver_name }} | {{ isset($country->name) ? $country->name : '' }} | {{ isset($bank->name) ? $bank->name : '' }} | {{ $row->currency }} {{ $row->total }} | {{-- @can('Education order paid/unpaid') --}} @if ($row->is_paid == 1) Paid @else Unpaid @endif {{-- @endcan --}} | {{-- @can('Education order status') --}} @if ($row->status == 'pending') Pending @elseif($row->status == 'approved') Approved @endif {{-- @endcan --}} | {{-- @can('Education order view') --}} {{-- @endcan --}} {{-- @can('Education order delete') --}} {{-- @endcan --}} |