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

Order Details

Control and view all Add Ons

@endsection @section("content") @include("includes.dialog")
#{{$order->id}}
{{$order->created_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}} JOD
@endforeach
{{$item->itemPrice}} JOD
{{$item->totalPrice}} JOD
@endforeach
@endsection @section("scripts") @endsection