@forelse ($partnerAccntTxn as $key => $txn)
@empty
@endforelse
# |
{{ __('message_lang.LBL_DATE') }} |
{{ __('message_lang.LBL_REFERENCE') }} |
{{ __('message_lang.LBL_AMOUNT') }} |
{{ __('message_lang.LBL_BALANCE') }} |
{{ __('message_lang.LBL_PRODUCT_TYPE') }} |
{{ __('message_lang.LBL_NOTE') }} |
{!! $key + 1 !!} |
{{(isset($txn->created_at) && $txn->created_at != '') ? Carbon\Carbon::parse($txn->created_at)->format("d M, Y") : "-"}} |
{{(isset($txn->summary) && $txn->summary != '') ? $txn->summary : "-"}} |
{{number_format($txn->amount,4)." ".$txn->currency}} |
{{number_format($txn->new_balance,2)}} |
{{(isset($txn->mtn_product_type) && $txn->mtn_product_type != '') ? $txn->mtn_product_type : ((isset($txn->transaction_type) && $txn->transaction_type != '') ? $txn->transaction_type : "-")}} |
{{(isset($txn->notes) && $txn->notes != '') ? $txn->notes : ((isset($txn->note) && $txn->note != '') ? $txn->note : "-")}} |
No data available in table |
@if($partnerAccntTxn)
@endif