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

Invoices - {{ $categoryName }}

Back
Category: {{ $categoryName }}
Date Range: {{ $from }} to {{ $to }}
@forelse($invoices as $inv) @empty @endforelse
Date Invoice No Provider Amount Actions
{{ \Illuminate\Support\Carbon::parse($inv->bill_date)->toDateString() }} {{ $inv->bill_no ?? $inv->id }} {{ $inv->provider_name }} BDT {{ number_format($inv->invoice_amount, 2) }}
No invoices found for this category and date range.
@endsection