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

{!! trans('message_lang.LBL_MULTISERVICES_REPORT') !!}

@csrf
@if (Auth::guard('agentportal')->user()->hasRole('administrator'))
@endif
@include('agentportal.layouts.date_filter')
{!! trans("message_lang.BTN_CLEAR_SEARCH") !!}
@if($serviceTxns)
@endif
@forelse ($serviceTxns as $key => $service) @empty @endforelse
# {!! trans('message_lang.LBL_REFERENCE') !!} {!! trans('message_lang.LBL_OPERATOR_REFERENCE') !!} {!! trans('message_lang.LBL_PRODUCT_TYPE') !!} {!! trans('message_lang.LBL_AMOUNT') !!} {!! trans('message_lang.LBL_PHONE_NUMBER') !!} {!! trans('message_lang.LBL_STATUS') !!} {!! trans('message_lang.LBL_LOCATION') !!} {!! trans('message_lang.LBL_COUNTRY') !!} {!! trans('message_lang.LBL_DATE') !!}
{!! $key + 1 !!} {!! $service->reference_no !!} {{ $service->operator_ref }} {!! config('constants.SERVICE_PRODUCT_TYPES')[$service->productTypeId] !!} {!! number_format($service->topupAmount, 2) . ' ' . $service->currency !!} {!! $service->phoneNumber !!} {!! $statuses[$service->status] !!} {!! isset($service->agentId) && isset($service->agentLocationUser->agentLocation) ? $service->agentLocationUser->agentLocation->name : 'CashApp' !!} {!! $service->countryCode ?? "-" !!} {!! format_date_tz($service->created_at) !!}
{!! trans('message_lang.DATATABLE_LBL_NO_DATA_AVAILABLE') !!}
@endsection @section("page_vendors") @endsection @section("page_script") @endsection