Date-wise Report

Date-wise Report
@if(Auth::user()->role !== 'branch_admin')
@else

Current business date only

@endif

Opening Balance

SAR {{ number_format($openingBalance, 2) }}

Total Credit(Receivings)

SAR {{ number_format($totalCredit, 2) }}

Total Debit(Payments)

SAR {{ number_format($totalDebit, 2) }}

Closing Balance

SAR {{ number_format($closingBalance, 2) }}

@forelse($dateSummaries as $date => $summary) @empty @endforelse
Date Credit(Receivings) Debit(Payments) Net Action
{{ \Carbon\Carbon::parse($date)->format('d/m/Y') }} SAR {{ number_format($summary['credit'], 2) }} SAR {{ number_format($summary['debit'], 2) }} SAR {{ number_format($summary['net'], 2) }} View
No transactions in the selected range.