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

{!! trans("message_lang.LBL_COMPLIANCE_REPORT") !!}

@csrf
@if(Auth::guard('agentportal')->user()->hasRole('administrator|compliance'))
@endif
@include('agentportal.layouts.date_filter')
{!! trans("message_lang.BTN_CLEAR_SEARCH") !!}
@if($transactions)
@endif
@forelse ($transactions as $key => $txn) @empty @endforelse
# {!! trans('message_lang.LBL_REFERENCE') !!} {!! trans('message_lang.LBL_AMOUNT') !!} {!! trans('message_lang.LBL_PHONE_NUMBER') !!} {!! trans('message_lang.LBL_STATUS') !!} {!! trans('message_lang.LBL_COUNTRY') !!} {!! trans('message_lang.LBL_TXN_DATE') !!}
{!! $key + 1 !!} {!! $txn->reference_no !!} {!! number_format($txn->receiving_amount, 2) . ' ' . $txn->currency !!} {!! $txn->recipient_phone_no ?? "-" !!} {!! $numericStatus[$txn->status] !!} {!! $txn->country ?? '-' !!} {!! format_date_tz($txn->updated_at) !!}
{!! trans('message_lang.DATATABLE_LBL_NO_DATA_AVAILABLE') !!}
@endsection @section("page_vendors") @endsection @section("page_script") @endsection