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

All Receipts

@foreach($receipts as $r) @endforeach
Date User Merchant Amount File
{{ $r->created_at->format('Y-m-d H:i') }} {{ $r->user?->email }} {{ $r->merchant ?? '—' }} {{ $r->total_amount ? number_format($r->total_amount,2) . ' ' . $r->currency : '—' }} {{ $r->original_filename }}
{{ $receipts->links() }}
@endsection