@extends('admin.layouts.master') @push('css') @endpush @section('page-title') @include('admin.components.page-title',['title' => __($page_title)]) @endsection @section('breadcrumb') @include('admin.components.breadcrumb',['breadcrumbs' => [ [ 'name' => __("Dashboard"), 'url' => setRoute("admin.dashboard"), ] ], 'active' => __("Send Money Log")]) @endsection @section('content')
| {{ __("TRX ID") }} | {{ __("Sender Type") }} | {{ __("sender") }} | {{ __("Receiver Type") }} | {{ __("Receiver") }} | {{ __("Sender Amount") }} | {{ __("Receiver Amount") }} | {{ __("charge") }} | {{ __("Payable") }} | {{ __(("Status")) }} | {{ __("Time") }} |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $item->trx_id }} | @if($item->user_id != null) {{ __("USER") }} @elseif($item->agent_id != null) {{ __("AGENT") }} @endif | @if($item->user_id != null) {{ $item->creator->email }} @elseif($item->agent_id != null) {{ $item->creator->email }} @endif | @if($item->user_id != null) {{ __("USER") }} @elseif($item->agent_id != null) {{ __("AGENT") }} @endif | @if($item->user_id != null) {{ $item->details->receiver->email?? $item->details->receiver_email }} @elseif($item->agent_id != null) {{ $item->details->receiver->email??$item->details->receiver_email }} @endif | {{ get_amount($item->details->charges->sender_amount??$item->request_amount,$item->details->charges->sender_currency??get_default_currency_code(),get_wallet_precision($item->creator_wallet->currency)) }} | {{ get_amount($item->details->charges->receiver_amount??$item->details->recipient_amount,$item->details->charges->receiver_currency??get_default_currency_code(),$item->details->charges->r_precision_digit??2) }} | {{ get_amount($item->charge->total_charge,$item->details->charges->sender_currency??get_default_currency_code(),get_wallet_precision($item->creator_wallet->currency)) }} | {{ get_amount($item->details->charges->payable??$item->payable,$item->details->charges->sender_currency??$item->payable,get_wallet_precision($item->creator_wallet->currency)) }} | {{ __($item->stringStatus->value) }} | {{ $item->created_at->format('d-m-y h:i:s A') }} |