Jobcard

{{ $jobcard->company->name }}

{{ $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
@if($customMessage)
Message:
{{ $customMessage }}
@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
@if($jobcard->description)
Description
{{ $jobcard->description }}
@endif
Job Items
@foreach($jobcard->lineItems as $item) @endforeach
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) }}
@if($jobcard->due_date && $jobcard->due_date < now() && $jobcard->status !== 'completed')
Important: This jobcard is overdue. Please contact us for an update.
@endif

Next Steps

  • Review the jobcard details above
  • Contact us if you have any questions about this work
  • We'll keep you updated on the progress
  • Keep this email for your records
@if($jobcard->notes)
Notes
{{ $jobcard->notes }}
@endif @if($jobcard->terms_conditions)
Terms & Conditions
{{ $jobcard->terms_conditions }}
@endif