@extends('layouts.main') @section('title', 'Payment Report') @section('content') @push('head') @endpush
{{-- summary --}}
{{-- --}} {{--

₦ 0

Commision Amount

( Transactions)

--}} {{-- --}}
₦ 0
₦ 0Total. no of Transaction
{{-- end of top card summary --}}
{{-- --}}
Filter Results: {{$fromDate}} - {{$toDate}}
@csrf
{{-- --}}
@forelse ($data as $key=> $item) @empty @endforelse
{{ __('S/N')}} {{ __('Transaction Ref')}} {{ __("Payer's Name")}} {{ __("MDA")}} {{ __("Service")}} {{ __('Amount')}} {{ __('Commision Amount')}} {{ __('Agent Name')}} {{ __('Payment Status')}} {{ __('Payment Date')}}
{{$key+1}} {{$item->transaction_reference}} {{$item->fname}} {{$item->lname}} {{$item->mda_name}} {{$item->service_name}} {{$item->amount}} {{$item->commision_amount}} {{$item->name}} {!! $item->payment_status==1 ? "Paid": "Unpaid" !!} {{$item->paid_at}}
{{-- --}} @push('script') {{-- --}} @endpush @endsection