{{ $customer->display_name }}
Service Location Billing Address
{{ $property->full_address }} {{ $billing->full_address }}
Contact details Contact details
{{ $property_contact_person->display_name }} {{ $contact_person->display_name }}
{{ $property_contact_person->primary_phone }} {{ $contact_person->primary_phone }}
{{ $property_contact_person->primary_email }} {{ $contact_person->primary_email }}
@if($ticket->reference) @endif
Visit # {{ $visit->barcode }}
Reference # {{ $ticket->reference }}
Date {{ \Carbon\Carbon::parse($visit->started_at)->format('d-m-Y') }}
Time {{ \Carbon\Carbon::parse($visit->started_at)->format('h:i A') }} - {{ \Carbon\Carbon::parse($visit->finished_at)->format('h:i A') }}
Priority {{ $ticket->priority }}
Schedule Type {{ $ticket->type }}
Job Type {{ $ticket->ticket_type }}
@if($ticket->description)
Description
{!! $ticket->description !!}
@endif @if($equipments->isNotEmpty())
@foreach($equipments as $tkey => $line_item) @endforeach
S. No. Equipment Serial No. Model Location  
{{ $tkey + 1 }}. {{ $line_item->equipment_name }} {{ $line_item->equipment_serial_no }} {{ $line_item->equipment_model }} {{ $line_item->equipment_location }}  
@endif @if($line_items->isNotEmpty())
@foreach($line_items as $tkey => $line_item) @endforeach @if($ticket->tax_amount) @endif @if($ticket->discount_amount) @endif @if($ticket->adjustment) @endif
S. No. Product/Service Price QTY Amount  
{{ $tkey + 1 }}. {{ $line_item->name }} $ {{ \App\Helpers\Common::formatMoney($line_item->rate) }} {{ $line_item->quantity }} $ {{ \App\Helpers\Common::formatMoney($line_item->total) }}  
Sub Total $ {{\App\Helpers\Common::formatMoney($ticket->sub_total)}}  
GST @ {{$ticket->tax_value}} % $ {{\App\Helpers\Common::formatMoney($ticket->tax_amount)}}  
Discount $ {{\App\Helpers\Common::formatMoney($ticket->discount_amount)}}  
Adjusment $ {{\App\Helpers\Common::formatMoney($ticket->adjustment)}}  
Grand Total $ {{\App\Helpers\Common::formatMoney($ticket->total)}}  
@endif @if($ticket->term_conditions)
Terms & Conditions
{!! $ticket->term_conditions !!}
@endif