Dear {{$name}},
Order ID {{$o_data->order_no}} Placed Successfully
| Service Order ID |
{{$o_data->order_no}} |
| Order Date |
{{fetch_booking_created_at_date($o_data->order_id)}} |
| Total |
{{$o_data->total}} AED |
| VAT |
{{$o_data->vat}} AED |
@if(!empty($o_data->discount))
| Discount |
{{$o_data->discount}} AED |
@endif
| Grand Total |
{{$o_data->grand_total}} AED |
| Details |
|
@foreach($o_data->services as $key=>$value)
| Service Name |
{{$value->name}} |
| Service Rate |
{{$value->qty}} x {{$value->hourly_rate}} AED |
@if($key == 0)
| Booking Date |
{{date(config('global.datetime_format'), strtotime($value->booking_date));}} |
@endif
@endforeach