@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' => __("Bill Pay Logs")]) @endsection @section('content')
| {{ __("web_trx_id") }} | {{ __("type") }} | {{ __("Fullname") }} | {{ __("User Type") }} | {{ __("bill Type") }} | {{ __("Bill Number") }} | {{ __("Bill Amount") }} | {{ __(("Status")) }} | {{ __("Time") }} | {{__("action")}} |
|---|---|---|---|---|---|---|---|---|---|
| {{ $item->trx_id }} | {{ $item->details->bill_type??"MANUAL" }} | @if($item->user_id != null) {{ $item->creator->fullname }} @elseif($item->agent_id != null) {{ $item->creator->fullname }} @endif | @if($item->user_id != null) {{ __("USER") }} @elseif($item->agent_id != null) {{ __("AGENT") }} @elseif($item->merchant_id != null) {{ __("MERCHANT") }} @endif | {{ @$item->details->bill_type_name }} | {{ @$item->details->bill_number }} | {{ get_amount($item->request_amount,billPayCurrency($item)['sender_currency']) }} | {{ __($item->stringStatus->value) }} | {{ $item->created_at->format('d-m-y h:i:s A') }} | @include('admin.components.link.info-default',[ 'href' => setRoute('admin.bill.pay.details', $item->id), 'permission' => "admin.bill.pay.details", ]) |