@if ($filter_from_date && $filter_to_date)
|
|
{{ __('SL') }}. | {{ __('Date') }} | {{ __('Type') }} | {{ __('Payment') }} | {{ __('Name') }} | {{ __('Amount') }} | {{ __('Action') }} |
|---|---|---|---|---|---|---|---|
| @if($cash->platform === 'cash' && in_array($cash->transaction_type, ['cash_to_bank','adjust_cash'])) @endif | {{ ($cashes->currentPage() - 1) * $cashes->perPage() + $loop->iteration }} | {{ formatted_date($cash->date) }} | {{ ucwords(str_replace('_', ' ', $cash->platform)) }} | {{ ucwords(str_replace('_', ' ', $cash->transaction_type)) }} | {{ $cash->user->name ?? '' }} | {{ currency_format($cash->amount, currency: business_currency()) }} |
|