{{ __('Transactions') }}

Transaction Summary

Totals by Payment Method

@foreach ($totalsByMethod as $method => $total) @endforeach @foreach ($totalsByMethod as $total) @endforeach
{{ $method }}
Php {{ number_format($total, 2) }}

Totals by Day

@foreach ($totalsPerDay as $date => $total) @endforeach @foreach ($totalsPerDay as $total) @endforeach
{{ $date }}
Php {{ number_format($total, 2) }}

Overall Total

Php {{ number_format($overallTotal, 2) }}
@php $headers = [ 'myid' => 'ID', 'payment_method' => 'Payment Method', 'cname' => 'Name', 'payment_amount' => 'Amount', 'payment_date' => 'Payment Date', 'action' => 'Action' ]; $dropdownActions = []; $dltAllbtn = ["Lock Selected", "transaction.bulk-lock"]; $dltAllbtn = []; $tableActions = ['view' => 'transaction.edit', 'delete-item' => 'transaction.destroy']; $addButton = []; $filterRoute = route('transaction.index'); $customMessage = [ 'success' => '', 'delete' => 'This User will be permanently deleted if you proceed.', ]; @endphp
@include('sweetalert::alert')