@extends('layouts.app') @section('content')

Admin Dashboard

View all receipts
Users
{{ $userCount }}
Receipts
{{ $receiptCount }}
Latest
Last 10 uploads
Latest receipts
@foreach($latestReceipts as $r) @endforeach
Date User Merchant File
{{ $r->created_at->format('Y-m-d H:i') }} {{ $r->user?->email }} {{ $r->merchant ?? '—' }} {{ $r->original_filename }}
@endsection