@extends('layouts.main') @section('title', 'Payment Report') @section('content') @push('head') {{-- --}} {{-- date --}} {{-- --}} @endpush
| {{ __('S/N')}} | {{ __('Transaction Ref')}} | {{ __("Payer's Name")}} | {{ __("MDA")}} | {{ __("Service")}} | {{ __('Amount')}} | {{ __('Payment Status')}} | {{ __('Payment Date')}} | {{ __('Action')}} |
|---|---|---|---|---|---|---|---|---|
| {{$key+1}} | {{$item->transaction_reference}} | {{$item->fname}} {{$item->lname}} | {{$item->mda->name}} | {{$item->service ? $item->service->name : 'N/A'}} | ₦{{number_format($item->amount,2)}} | {!! $item->payment_status==1 ? "Paid": "Unpaid" !!} requery | {{$item->paid_at}} |
| {{ __('S/N')}} | {{ __('Transaction Ref')}} | {{ __("Payer's Name")}} | {{ __("MDA")}} | {{--{{ __("Service")}} | --}}{{ __('Amount')}} | {{ __('Payment Status')}} | {{ __('Payment Date')}} | {{ __('Action')}} |
|---|---|---|---|---|---|---|---|---|
| {{$key+1}} | {{$item->transaction_id}} | {{$item->user->name}} | {{$item->mda->name}} | {{--{{$item->service->name}} | --}}₦{{number_format($item->amount,2)}} | {!! $item->payment_status=='Paid' ? "Paid": "Unpaid" !!} requery | {{$item->updatedDtm}} |