@lang('front.orderNumber') {{$order->order_number}}#
{{--
الغاء الطلب
--}}

@lang('front.OrderProducts')

@if($order->status == 'wait')
@lang('front.wait')
@lang('front.accepted')
@lang('front.shipped')
@lang('front.completed')
@elseif($order->status == 'accepted')
@lang('front.wait')
@lang('front.accepted')
@lang('front.shipped')
@lang('front.completed')
@elseif($order->status == 'shipped')
@lang('front.wait')
@lang('front.accepted')
@lang('front.shipped')
@lang('front.completed')
@elseif($order->status == 'completed')
@lang('front.wait')
@lang('front.accepted')
@lang('front.shipped')
@lang('front.completed')
@endif

متابعة حالة الطلب

@foreach($order->products as $or) {{-- @dd($or)--}}
{{$or->name}}
{{number_format($or->pivot->price * $or->pivot->quantity,3)}} دينار*{{ $or->pivot->quantity}}
{{-- --}}
@endforeach