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

Your Receipts

Upload receipt
@forelse($receipts as $r)
{{ $r->merchant ?? $r->original_filename }}
{{ $r->purchased_at?->format('Y-m-d') ?? '—' }} · {{ $r->total_amount !== null ? number_format((float)$r->total_amount, 2) . ' ' . $r->currency : '—' }}
Open
@empty
No receipts yet. Upload your first one.
@endforelse
{{ $receipts->links() }}
@endsection