@extends("agentportal.layouts.layout") @section("title", trans('message_lang.LBL_MULTISERVICES_REPORT')) @section("page_style") @endsection @section("content")

{{ trans('message_lang.LBL_MULTISERVICES_REPORT') }} - {{ $transaction->reference_no }}

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

@if ($transaction->product->productTypeId == 3) @else @endif @if($transaction->status == 3 && auth()->guard('agentportal')->user()->hasRole('administrator')) @endif
{{ trans('message_lang.LBL_REFERENCE') }}: {{ $transaction->reference_no }}
{{ trans('message_lang.LBL_OPERATOR_REFERENCE') }}: {{ $transaction->operator_ref }}
{{ trans('message_lang.LBL_OPERATOR_NAME') }}: {{ $transaction->product->operator->operatorName }}
{{ trans('message_lang.LBL_PRODUCT_NAME') }}: {{ $transaction->product->productName }}
{{ trans('message_lang.LBL_AMOUNT') }}: {{ $transaction->currency ." ". $transaction->topupAmount }}
{{ trans('message_lang.LBL_ACCOUNT_NUMBER') }}: {{ $transaction->accountId }}
{{ trans('message_lang.LBL_PAYER_MESSAGE') }}
{{ $transaction->instructions }}
{{ trans('message_lang.LBL_PHONE_NUMBER') }}: {{ $transaction->phoneNumber }}
{{ trans('message_lang.LBL_DATE') }}: {{ \Carbon\Carbon::parse($transaction->created_at)->toDateTimeString() }}
{{ trans('message_lang.LBL_STATUS') }}: {{ $statuses[$transaction->status] }}
@csrf @if ($transaction->status == 1) @endif
{{ trans('message_lang.LBL_REJECT_REASON') }}: {{ $transaction->failureReason }}
@if(!$transaction->request_by)

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

@else

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

@endif
@if(!$transaction->request_by && isset($transaction->agentLocationUser->agentLocation))
{{ trans('message_lang.LBL_LOCATION') }}: {{ $transaction->agentLocationUser->agentLocation->name }}
{{ trans('message_lang.LBL_COUNTRY') }}: {{ $transaction->agentLocationUser->agentLocation->agentCountry->name }}
{{ trans('message_lang.LBL_AGENT_NAME') }}: {{ $transaction->agentLocationUser->first_name ." ". $transaction->agentLocationUser->last_name }}
{{ trans('message_lang.LBL_BALANCE_AFTER') }}: {{ $transaction->agentLocationUser->agentLocation->agentCountry->currency ." ". $transaction->agentLocationUser->agentLocation->balance }}
@else {{--
{{ trans('message_lang.LBL_FULL_NAME') }}: {{ $transaction->customer->first_name ." ". $transaction->customer->last_name }}
{{ trans('message_lang.LBL_COUNTRY') }}: {{ $transaction->customer->country->country_name }}
{{ trans('message_lang.LBL_PHONE') }}: {{ $transaction->customer->phone_number }}
--}} @endif
@endsection @section("page_vendors") {{-- --}} @endsection @section("page_script") @endsection