{{ $jobcard->company->name }}
@if($jobcard->company->address)
{{ $jobcard->company->address }}
@endif
@if($jobcard->company->phone)
{{ $jobcard->company->phone }}
@endif
@if($jobcard->company->email)
{{ $jobcard->company->email }}
@endif
{{ $jobcard->job_number }}
{{ $jobcard->title }}
{{ $jobcard->status }}
@if($jobcard->start_date)
Start Date: {{ \Carbon\Carbon::parse($jobcard->start_date)->format('M d, Y') }}
@endif
@if($jobcard->due_date)
Due Date: {{ \Carbon\Carbon::parse($jobcard->due_date)->format('M d, Y') }}
@endif
Customer
{{ $jobcard->customer->name }}
@if($jobcard->customer->email)
{{ $jobcard->customer->email }}
@endif
@if($jobcard->customer->phone)
{{ $jobcard->customer->phone }}
@endif
@if($jobcard->customer->address)
{{ $jobcard->customer->address }}
@endif
Description
{{ $jobcard->description }}
Job Items
| Description | Quantity | Unit Price | Total |
|---|---|---|---|
| {{ $item->description }} | {{ $item->quantity }} | {{ $jobcard->company->formatCurrencyZar($item->unit_price) }} | {{ $jobcard->company->formatCurrencyZar($item->total) }} |
Subtotal:
{{ $jobcard->company->formatCurrencyZar($jobcard->subtotal) }}
@if($jobcard->discount_amount > 0)
Discount:
-{{ $jobcard->company->formatCurrencyZar($jobcard->discount_amount) }}
@endif
Tax ({{ $jobcard->tax_rate }}%):
{{ $jobcard->company->formatCurrencyZar($jobcard->tax_amount) }}
Total:
{{ $jobcard->company->formatCurrencyZar($jobcard->total) }}
Important: This jobcard is overdue. Please contact us for an update.
@endif
@if($jobcard->notes)
Notes
{{ $jobcard->notes }}
Terms & Conditions
{{ $jobcard->terms_conditions }}