| Address: | {{ $company->address }} |
| City: | {{ $company->city }} |
| VAT Number: | {{ $company->vat_number }} |
| Phone: | {{ $company->phone }} |
| Email: | {{ $company->email }} |
| Fax: | {{ $company->fax }} |
{{ $company->bank_account_name ?? $company->name }}
@if($company->bank_name)Bank Name: {{ $company->bank_name }}
@endif @if($company->bank_account_number)Acc No: {{ $company->bank_account_number }}
@endif @if($company->bank_sort_code)Branch Code: {{ $company->bank_sort_code }}
@endif{{ $jobcard->customer->account_code ?? 'N/A' }}
{{ $jobcard->customer->name ?? 'CUSTOMER NAME' }}
@if($jobcard->contact)Attn: {{ $jobcard->contact->name }}
@endif @if($jobcard->customer->address){{ $jobcard->customer->address }}
@endif @if($jobcard->customer->city){{ $jobcard->customer->city }}
@endif @if($jobcard->customer->postal_code){{ $jobcard->customer->postal_code }}
@endif @php $jobcardDisplayEmail = null; if ($jobcard->email && stripos($jobcard->email, 'sage-migration.local') === false) { $jobcardDisplayEmail = $jobcard->email; } elseif ($jobcard->customer->email && stripos($jobcard->customer->email, 'sage-migration.local') === false) { $jobcardDisplayEmail = $jobcard->customer->email; } @endphp @if($jobcardDisplayEmail){{ $jobcardDisplayEmail }}
@endif @if($jobcard->phone){{ $jobcard->phone }}
@elseif($jobcard->customer->phone){{ $jobcard->customer->phone }}
@endif{{ $jobcard->description }}
| Work Description | QTY | Rate | Discount | Tax | Total (Excl) |
|---|---|---|---|---|---|
| {{ $group->name }} | |||||
| {{ $item->description ?? 'Work Description' }}{{ ($item->product && ($item->product->sku ?? $item->product->barcode)) ? ' (' . ($item->product->sku ?? $item->product->barcode) . ')' : '' }} | {{ $company->formatNumber($item->quantity ?? 0, 2) }} | {{ $company->formatCurrencyZar($item->unit_price ?? 0) }} | @if(($item->discount_percentage ?? 0) > 0) {{ $company->formatNumber($item->discount_percentage, 2) }}% @elseif(($item->discount_amount ?? 0) > 0) {{ $company->formatCurrencyZar($item->discount_amount) }} @else — @endif | @if($item->taxRate) {{ $company->formatCurrencyZar($item->tax_amount ?? 0) }} @else — @endif | {{ $company->formatCurrencyZar($item->total ?? 0) }} |
Additional Notes: {{ $jobcard->notes }}
@endif @if($jobcard->terms_conditions)Terms & Conditions: {{ $jobcard->terms_conditions }}
@endif