@extends("agentportal.layouts.layout") @section("title", trans("message_lang.LBL_REFERRAL_TXNS_REPORT")) @section("page_style") @endsection
@section("content")# | {!! trans("message_lang.LBL_DATE") !!} | {!! trans("message_lang.LBL_REFERRAL_CODE") !!} | {!! trans("message_lang.LBL_REFERENCE") !!} | {!! trans("message_lang.LBL_PHONE_NUMBER") !!} | {!! trans("message_lang.LBL_SENDING_AMOUNT") !!} | {!! trans("message_lang.LBL_SENDING_FEE") !!} | @if($request->has('txn_type') && $request->txn_type == "send"){!! trans("message_lang.LBL_TOTAL_AMOUNT") !!} | @elseif($request->has('txn_type') && $request->txn_type == "receive"){!! trans("message_lang.LBL_RECEIVING_AMOUNT") !!} | @endif|
---|---|---|---|---|---|---|---|---|---|
{!! $key + 1 !!} | {!! format_date_tz($transaction->created_at)!!} | {!! $transaction->code !!} | {!! $transaction->reference_no !!} | {!! $transaction->phone_number !!} | {!! number_format($transaction->sending_amount, 2)." (".$transaction->sending_currency.")" ?? 0.00 !!} | {!! number_format($transaction->fee, 2)." (".$transaction->sending_currency.")" ?? 0.00 !!} | @if($request->has('txn_type') && $request->txn_type == "send"){!! number_format(($transaction->sending_amount + $transaction->fee + $transaction->sending_tax), 2)." (".$transaction->sending_currency.")" ?? 0.00 !!} | @elseif($request->has('txn_type') && $request->txn_type == "receive"){!! number_format(($transaction->payout_amount), 2)." (".$transaction->payout_currency.")" ?? 0.00 !!} | @endif|
{!! trans('message_lang.DATATABLE_LBL_NO_DATA_AVAILABLE') !!} |