@extends('layouts.app') @section('title', 'Invoices') @section('content')

Invoices

Generate
@foreach ($invoices as $inv) @endforeach
# Patient Status Total Issued
{{ $inv->id }} {{ $inv->patient->user->name ?? '-' }} {{ $inv->status }} {{ $inv->currency }} {{ $inv->total }} {{ $inv->issued_at }} Open
{{ $invoices->links() }}
@endsection