@extends('layouts.master') @section('titel', 'Daily Payment Report | ') @section('content') @include('partials.header') @include('partials.sidebar')

Daily Payment Report

@if(request('fromDate') && request('toDate')) @endif
@php $grandTotal = 0; @endphp @forelse($reportData as $row) @php $grandTotal += $row->Amount; @endphp @empty @endforelse @if(count($reportData) > 0) @endif
Date Payee A/c. Paid From Voucher No Remarks Amount
{{ \Carbon\Carbon::parse($row->VoucherDate)->format('d-m-Y') }} {{ $row->PayeeAccount }} {{ $row->PaidFromAccount }} {{ $row->VoucherNo }} {{ $row->Remarks }} {{ number_format($row->Amount, 0) }}
No data found for selected date range.
Grand Total {{ number_format($grandTotal, 0) }}
@endsection