No |
Service Name |
Qty |
Price (AED) |
Booking Date |
@foreach($o_data->services as $key=>$value)
{{$key+1}} |
{{$value->name}}
|
{{$value->qty}} |
{{$value->hourly_rate}} |
@if($key == 0)
{{date(config('global.datetime_format'), strtotime($value->booking_date));}} |
@else
|
@endif
@endforeach
|
Payment Type |
{{$o_data->payment_mode}} |
|
|
Subtotal |
AED {{number_format($o_data->total, 2, '.', '')}} |
|
Discount |
AED {{number_format($o_data->discount, 2, '.', '')}} |
|
Service Charge |
AED {{number_format($o_data->service_charge, 2, '.', '')}} |
|
VAT |
AED {{number_format($o_data->vat, 2, '.', '')}} |
|
Grand Total |
AED {{number_format($o_data->grand_total, 2, '.', '')}}
|
|