@extends('layouts.cashier') @section('title','Cashier Dashboard') @section('breadcrumb')@endsection @section('cashier-content')

Welcome, {{ auth()->user()->name }}!

Today's Collection

₹{{ number_format($todayAmount, 0) }}

{{ $todayCount }} payments

This Month

₹{{ number_format($monthAmount, 0) }}

{{ $monthCount }} payments

Total Collected

₹{{ number_format($totalAmount, 0) }}

All time

Total Receipts

{{ $totalCount }}

All time
Recent Payments
View All
@forelse($recentPayments as $p) @empty @endforelse
ReceiptStudentAmountModeDate
{{ $p->receipt_no }} {{ optional($p->student)->name }} ₹{{ number_format($p->amount_paid, 0) }} {{ $p->payment_mode }} {{ $p->payment_date->format('d M Y') }}
No payments yet.
@endsection