@extends("agentportal.layouts.layout") @section("title", "MoneyGram Paid Transaction") @section("page_style") @endsection @section("content")

{{ trans('message_lang.LBL_MONEYGRAM_CASHAPP_PAID_TXNS') }}

{{ trans('message_lang.LBL_SENDER_DETAILS') }}:
{{ trans('message_lang.LBL_SENDER_NAME') }}: {{ $mgiTxn->transaction->sender_name?? '-' }}
{{ trans('message_lang.LBL_COUNTRY') }}: {{ $mgiTxn->transaction->sending_country_code ?? '-' }}
{{ trans('message_lang.LBL_SENDING_AMOUNT') }}: {{ number_format($mgiTxn->transaction->sending_amount, 2) ?? '-' }}
{{ trans('message_lang.LBL_SENDING_CURRENCY') }}: {{ $mgiTxn->transaction->sending_currency ?? '-' }}
{{ trans('message_lang.LBL_BNF_DETAILS') }}:
{{ trans('message_lang.LBL_BENEFICIARY_NAME') }}: {{ $mgiTxn->transaction->beneficiary_name??'' }}
{{ trans('message_lang.LBL_PHONE_NUMBER') }}: {{ $mgiTxn->transaction->user->phone_number ?? '-' }}
{{ trans('message_lang.LBL_ADDRESS_ONE') }}: {{ $mgiTxn->transaction->user->address ?? '-' }}
{{ trans('message_lang.LBL_COUNTRY') }}: {{ $mgiTxn->receiving_country ?? '-' }}
{{ trans('message_lang.LBL_GOVERMENT_ID_TYPE') }}: {{ $mgiTxn->receiver_photo_id_type ?? '-' }}
{{ trans('message_lang.LBL_GOVERMENT_ID_NUMBER') }}: {{ $mgiTxn->receiver_photo_id_number ?? '-' }}
{{ trans('message_lang.LBL_ISSUING_COUNTRY') }}: {{ $mgiTxn->receiver_photo_id_country ?? '-' }}
{{ trans('message_lang.LBL_MY_TXNS_DETAILS') }}:
{{ trans('message_lang.LBL_TXN_REF_NO') }}: {{ $mgiTxn->reference_no }}
{{ trans('message_lang.LBL_TXN_DATE') }}: {{ format_date_tz($mgiTxn->created_at) ?? '-' }}
{{ trans('message_lang.LBL_COUNTRY') }}: {{ $mgiTxn->receiving_country ?? '-' }}
{{ trans('message_lang.LBL_CURRENCY') }}: {{ $mgiTxn->receiving_currency ?? '-' }}
{{ trans('message_lang.LBL_RECEIVING_AMOUNT') }}: {{ number_format($mgiTxn->receiving_amount, 2) ?? '-' }}
@endsection @section("page_vendors") @endsection @section("page_script") @endsection