@extends('layouts.app') @section('title', 'Dashboard') @section('content')
Welcome to your invoice management system
| Invoice # | Client | Date | Amount | Status |
|---|---|---|---|---|
| {{ $invoice->invoice_number }} | {{ $invoice->client->company_name }} | {{ $invoice->invoice_date->format('M d, Y') }} | ${{ number_format($invoice->grand_total, 2) }} | {{ ucfirst($invoice->status) }} |
| No invoices found | ||||
| Quotation # | Client | Date | Valid Until | Amount | Status |
|---|---|---|---|---|---|
| {{ $quotation->quotation_number }} | {{ $quotation->client->company_name }} | {{ $quotation->quotation_date->format('M d, Y') }} | {{ $quotation->valid_until_date->format('M d, Y') }} | ${{ number_format($quotation->grand_total, 2) }} | {{ ucfirst(str_replace('_', ' ', $quotation->status)) }} |
| No quotations found | |||||
| Supplier | Item Type | Unit Price | Quoted | Status |
|---|---|---|---|---|
| {{ $record->supplier->codename }} |
{{ $record->item_type }}
{{ $record->short_description }}
|
{{ $record->unit_price_formatted }}
per {{ $record->uom }}
|
{{ $record->quoted_at->format('M d, Y') }} | {{ $record->is_active ? 'Active' : 'Inactive' }} |
| No supplier price records found | ||||