| {{ translate('Search_Criteria') }} |
@if ($data['from'])
{{ translate('from' )}} - {{ $data['from']?Carbon\Carbon::parse($data['from'])->format('d M Y'):'' }} @endif @if ($data['to']) {{ translate('to' )}} - {{ $data['to']?Carbon\Carbon::parse($data['to'])->format('d M Y'):'' }} @endif {{ translate('transaction_type') }}- {{ $data['transaction_type']?translate($data['transaction_type']):translate('messages.All') }} {{ translate('customers') }}- {{ $data['customer']??translate('messages.All') }} |
|||||||
|---|---|---|---|---|---|---|---|---|
| {{ translate('Analytics') }} |
{{ translate('messages.debit') }}- {{\App\CentralLogics\Helpers::format_currency($debit)}}
{{ translate('messages.credit') }}- {{\App\CentralLogics\Helpers::format_currency($credit)}} {{ translate('messages.balance') }}- {{\App\CentralLogics\Helpers::format_currency($balance)}} |
|||||||
| {{ translate('sl') }} | {{translate('messages.Transaction_Id')}} | {{translate('messages.Transaction_Date')}} | {{translate('messages.Customer')}} | {{translate('messages.Credit')}} | {{translate('messages.Debit')}} | {{translate('messages.Balance')}} | {{translate('messages.Transaction_Type')}} | {{translate('messages.Reference')}} |
| {{$key+1}} | {{$wt->transaction_id}} | {{ \App\CentralLogics\Helpers::date_format($wt->created_at) }} | {{ $wt->user?$wt->user->f_name.' '.$wt->user->l_name:translate('messages.not_found') }} | {{ \App\CentralLogics\Helpers::format_currency($wt->credit) }} | {{ \App\CentralLogics\Helpers::format_currency($wt->debit) }} | {{ \App\CentralLogics\Helpers::format_currency($wt->balance) }} | {{ translate('messages.'.$wt->transaction_type)}} | {{ isset($wt->reference) ? ucfirst(str_replace('_', ' ',$wt->reference)) : translate('messages.N/A')}} |