|
|
{{ __('SL') }}. | {{ __('Date') }} | {{ __('Name') }} | {{ __('Type') }} | {{ __('Cheque Number') }} | {{ __('Payment') }} | {{ __('Amount') }} | {{ __('Status') }} | {{ __('Action') }} |
|---|---|---|---|---|---|---|---|---|---|
| {{ ($cheques->currentPage() - 1) * $cheques->perPage() + $loop->iteration }} | {{ formatted_date($cheque->date) }} | {{ $cheque->user?->name }} | {{ ucwords(str_replace('_', ' ', $cheque->platform)) }} | {{ $cheque->meta['cheque_number'] ?? '' }} | {{ ucwords(str_replace('_', ' ', $cheque->transaction_type)) }} | {{ currency_format($cheque->amount, currency: business_currency()) }} | {{ $cheque->type }} |
@if (($cheque->type ?? '') == 'pending')
{{__('Deposit') }}
@else
{{__('Re-Open') }}
@endif
|