@extends('layouts.app') @section('title', 'Invoice ' . $invoice->invoice_number) @section('page_title', 'Invoice Details') @section('content')
Nasser Road, Kampala, Uganda
Phone: +256 700 000 000 | Email: sales@preezbrands.com
Code: {{ $invoice->client->client_code }}
Phone: {{ $invoice->client->phone }}
@if($invoice->client->email) Email: {{ $invoice->client->email }}
@endif
@if($invoice->client->tin) TIN: {{ $invoice->client->tin }} @endif
Date Issued: {{ $invoice->invoice_date->format('M d, Y') }}
Due Date: {{ $invoice->due_date ? $invoice->due_date->format('M d, Y') : '-' }}
Payment Type: {{ ucfirst(str_replace('_', ' ', $invoice->payment_method)) }}
Prepared By: {{ $invoice->createdBy->full_name }}
| Item / SKU | Description | Unit Price | Qty | Discount | Total |
|---|---|---|---|---|---|
|
{{ $item->item_name }}
{{ $item->item_code }}
|
{{ $item->description ?? '-' }} | {{ number_format($item->unit_price) }} UGX | {{ $item->quantity }} | -{{ number_format($item->discount) }} UGX | {{ number_format($item->total_price) }} UGX |
{{ $invoice->notes }}
Voided By: {{ $invoice->voidedBy->full_name }} on {{ $invoice->voided_at->format('M d, Y H:i') }}
Reason: {{ $invoice->void_reason }}