@extends("SponsoredBanks.layouts.layout") @section("title", "BnB CashApp Transaction") @section("page_style") @endsection @section("content")
{{ trans('message_lang.LBL_BNF_DETAILS') }}:
{{ trans('message_lang.LBL_BENEFICIARY_NAME') }}: {{ $details->customer_first_name ?? '' }} {{ $details->customer_last_name ?? ' ' }}
{{ trans('message_lang.LBL_PHONE_NUMBER') }}: {{ $details->customer_phone_number ?? '-' }}
{{ trans('message_lang.LBL_MY_TXNS_DETAILS') }}:
{{ trans('message_lang.LBL_TXN_REF_NO') }}: {{ $details->reference ?? '-' }}
{{ trans('message_lang.LBL_TRANSACTION_TYPE') }}: {{ isset($details->type) ? $types[$details->type] : '' }}
{{ trans('message_lang.LBL_TXN_DATE') }}: {{ $details->date ?? '-' }}
{{ trans('message_lang.LBL_COUNTRY') }}: {{ $details->country }}
{{ trans('message_lang.LBL_CURRENCY') }}: {{ $details->currency }}
{{ trans('message_lang.LBL_AMOUNT') }}: {{ number_format($details->amount, 2) . ' (' . $details->currency . ')' }}
{{ trans('message_lang.LBL_SENDING_FEES') }}: {{ number_format($details->fees, 2) . ' (' . $details->currency . ')' }}
{{ trans('message_lang.LBL_TOTAL_AMOUNT') }}: {{ number_format($details->total, 2) . ' (' . $details->currency . ')' }}
{{ trans('message_lang.LBL_TXN_STATUS') }}: @if($details->status == 'success') {{ trans('message_lang.STATUS_OPTION_SUCCESS') }} @elseif($details->status == 'failed') {{ trans('message_lang.STATUS_OPTION_FAILED') }} @endif
{{ trans('message_lang.LBL_LOCATION') }}: {{ $details->location }} > {{ ($details->agent_first_name ?? '') .' '.($details->agent_last_name ?? '') }}
@endsection @section("page_vendors") @endsection