Download PDF @if($proforma->status==='draft')Edit@endif
@if(session('success'))
{{ session('success') }}
@endif @error('workflow')
{{ $message }}
@enderror

Customer

{{ $proforma->customer->name }}

{{ $proforma->customer->billing_address }}

Validity

{{ $proforma->issued_at->format('d M Y') }} — {{ $proforma->valid_until->format('d M Y') }}

LPO / reference

{{ $proforma->lpo_number ?: $proforma->customer_reference ?: 'Not supplied' }}

Status

@if($proforma->subject || $proforma->scope_title)

{{ $proforma->scope_title ?: 'Project scope' }}

{{ $proforma->subject }}

@endif
@foreach($proforma->items as $item)@endforeach
DescriptionUnitQty / areaRateDiscountVATTotal
{{ $item->description }}{{ $item->unit }}{{ number_format((float)$item->quantity,2) }}KES {{ number_format((float)$item->unit_price,2) }}{{ number_format((float)$item->discount_rate,2) }}%KES {{ number_format((float)$item->tax_amount,2) }}KES {{ number_format((float)$item->line_total,2) }}
Gross subtotalKES {{ number_format((float)$proforma->subtotal,2) }}
Discount- KES {{ number_format((float)$proforma->discount_amount,2) }}
VATKES {{ number_format((float)$proforma->vat_amount,2) }}
TotalKES {{ number_format((float)$proforma->total_amount,2) }}

Terms and conditions

{{ $proforma->terms ?: 'No terms added.' }}

Notes

{{ $proforma->notes ?: 'No notes added.' }}