@extends('layouts.dashboard') @section('title', 'Billing Invoices') @section('header', 'Billing Invoices Management') @section('sidebar') @include('company-admin.partials.sidebar') @endsection @section('content')
Manage and track all billing invoices for your company
| Invoice Number | Customer | Contract | Owner | Amount | Due Date | Status | Actions |
|---|---|---|---|---|---|---|---|
|
{{ $invoice->invoice_number }}
{{ $invoice->type ?? 'rent' }}
|
{{ $invoice->customer->name ?? 'N/A' }}
{{ $invoice->customer->email ?? 'N/A' }}
|
{{ $invoice->contract->contract_number ?? 'N/A' }}
|
{{ $invoice->owner->name ?? 'N/A' }}
|
{{ number_format($invoice->total_amount, 0) }}
{{ $invoice->currency }}
|
{{ \Carbon\Carbon::parse($invoice->due_date)->format('M d, Y') }}
|
@if($invoice->status === 'paid') Paid @elseif($invoice->status === 'pending') Pending @elseif($invoice->status === 'overdue') Overdue @else Cancelled @endif | |
|
No invoices found Invoices will appear here once generated |
|||||||