@php $job = $variant->job; $contact = $job?->contact; $items = $variant->items; $invoiceNum = 'VAR-' . str_pad($variant->id, 4, '0', STR_PAD_LEFT); $settings = \App\Models\AppSetting::all()->pluck('value', 'key'); @endphp

{{ $settings['company_name'] ?? 'Degabriele Kitchens' }}

Variation Payment  ยท  Invoice {{ $invoiceNum }}  ยท  Job {{ $job?->job_number }}

@if(session('error'))
{{ session('error') }}
@endif
{{ $variant->name }}
@if($variant->description)
{{ $variant->description }}
@endif @foreach($items as $item) @endforeach
Description Item Code Unit Qty Unit Price Amount
{{ $item->description }}@if($item->comments)
{{ $item->comments }}@endif
{{ $item->item_code ?? 'โ€”' }} {{ $item->unit ?? 'Each' }} {{ number_format((float)$item->qty, 2) }} ${{ number_format((float)$item->retail_price, 2) }} ${{ number_format($item->retailTotal(), 2) }}
Subtotal (ex. GST)${{ number_format($subtotal, 2) }}
GST (10%)${{ number_format($gst, 2) }}
Total (inc. GST)${{ number_format($total, 2) }}
@csrf

๐Ÿ”’ Payments are securely processed by Stripe. Your card details are never stored on our servers.

If you have questions, contact us at {{ $settings['company_email'] ?? '' }}  ยท  {{ $settings['company_phone'] ?? '' }}