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

Invoices

@forelse($invoices as $inv) @empty @endforelse
# Client Status Total Due
{{ $inv->number }} {{ $inv->user->email }} {{ $inv->status }} {{ $inv->currency }} {{ number_format((float)$inv->total, 2) }} {{ $inv->due_date ?? '-' }} Open
No invoices found.
{{ $invoices->links() }}
@endsection