@extends('layouts.app') @section('title', 'Invoice ' . $sale->invoice_number) @section('content')
Invoice details
This sale was recorded for reference only. No stock was deducted from inventory.
@if($sale->linked_order_number)
Linked Order: {{ $sale->linked_order_number }}
@endif
@if($sale->stock_restored)
Stock restored on {{ \Carbon\Carbon::parse($sale->stock_restored_at)->format('d M Y H:i') }}
@endif
{{ $sale->customer_name }}
{{ $sale->customer_phone }}
@if($sale->customer_email){{ $sale->customer_email }}
@endif @if($sale->customer_address)
{{ $sale->customer_address }}
{{ $sale->customer_postcode }} {{ $sale->customer_city }}, {{ $sale->customer_state }}
| Product | Qty | Price | Total |
|---|---|---|---|
|
{{ $item->product_name }}
{{ $item->sku }}
|
{{ $item->quantity }} | RM {{ number_format($item->unit_price, 2) }} | RM {{ number_format($item->line_total, 2) }} |
{{ $sale->notes }}
{{ $sale->cancel_reason }}
This invoice appears to be fully paid. Please refresh the page or contact admin if status is incorrect.