@extends("layouts.dashboard.app") @section("page-nav-title")

Order Details

Control and view all Add Ons

@endsection @section("content") @include("layouts.main-parts.page-message")
#{{$order->order_number}}
{{$order->updated_at->diffForhumans()}}
Items
@foreach($order->items as $item)
{{$item->quantity}} * {{$item->item_name_en}}
{{$item->item_name_ar}}
@foreach($item->addOns as $addOn)
{{$addOn->AddOns_Category_name}}
{{$addOn->AddOns_name}}
{{$addOn->AddOns_price}} SAR
@endforeach
{{$item->itemPrice}} SAR
{{$item->totalPrice}} SAR
@endforeach
@endsection @section("scripts") @endsection