| Name |
Description |
Amount
|
@php
$attributesArray = [];
if(isset($service_form->attributes->request_fault_reported))
{
$attributesArray[] = ["value" => $service_form->attributes->request_fault_reported, "heading" => "Request / Fault Reported"];
}
if(isset($service_form->attributes->diagnose_fault_found))
{
$attributesArray[] = ["value" => $service_form->attributes->diagnose_fault_found, "heading" => "Diagnose/Fault Found"];
}
if(isset($service_form->attributes->job_done_rectified))
{
$attributesArray[] = ["value" => $service_form->attributes->job_done_rectified, "heading" => "Job Done / Rectified"];
}
if(isset($service_form->attributes->remark_request))
{
$attributesArray[] = ["value" => $service_form->attributes->remark_request, "heading" => "Remark / Request"];
}
@endphp
@foreach($attributesArray as $key => $val)
| {{$val['heading']}} |
{!! nl2br(e($val['value'])) !!}
|
@if($key == 0)
${{ \App\Helpers\Common::formatMoneyWithComma($ticket->sub_total) }} |
@endif
@endforeach
Tested with Client :
@if(isset($closer->tested_with_client))
Yes
@endif
Checked by:
@if (isset($closer->customer_name_new))
{{isset($closer->customer_name_new)?$closer->customer_name_new:''}}
@endif
|
GST {{$ticket->tax_value}} % |
${{ \App\Helpers\Common::formatMoneyWithComma($ticket->tax_amount) }} |
| Payment By :
{{isset($closerpayment_mode->payment_mode_data->text)?$closerpayment_mode->payment_mode_data->text:'N.A.'}}
|
Total Amount |
${{ \App\Helpers\Common::formatMoneyWithComma($ticket->total) }} |
| Paid Amount |
${{ \App\Helpers\Common::formatMoneyWithComma($closer->amount_paid) }} |