@extends('layouts.user') @section('page-title', 'Invoices') @section('content')

Invoices

@forelse ($orders as $o) @empty @endforelse
Order #DateAmount
{{ $o->order_number }} {{ $o->created_at->format('d M Y') }} ₹{{ number_format($o->total_amount,2) }} Download
No invoices yet
@endsection