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

{{__('Order Details')}}

@endsection @section("content") @include("layouts.main-parts.page-message")
{{__('Items')}}

@foreach($orders as $order) @foreach($order->items as $item) - @endforeach @endforeach
{{__('Item Code')}} {{__('Item Name')}} {{__('Unit')}} {{__('Type')}} {{__('Inventory Quantity')}} {{__('Quantity')}}
{{$item->item->item_code}} {{$item->item->name_ar}} {{$item->item->getUnitNameAttribute()}} {{$item->item->getTypeNameAttribute()}}{{$item->inventory_quantity}} {{$item->quantity}}
@endsection @section("scripts") @endsection