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

Receipt

{{ $receipt->original_filename }}
Back
Merchant: {{ $receipt->merchant ?? '—' }}
Total: {{ $receipt->total_amount !== null ? number_format((float)$receipt->total_amount, 2) . ' ' . $receipt->currency : '—' }}
Date: {{ $receipt->purchased_at?->format('Y-m-d H:i') ?? '—' }}
@if($receipt->notes)
Notes:
{{ $receipt->notes }}
@endif
Download
@csrf
@csrf @method('DELETE')
@endsection