@extends('website.layouts.master') @section('site_title')الطلبات السابقة -@endsection @section('content')
الطلبات المنتهية

لديك {{ $orders_count }} طلب منتهي

@include('website.includes.user_menu')

الطلبات السابقة

@if ($orders->count()) @foreach ($orders as $order)
#{{ $order['id'] }}

{{ $order->company['name'] }}

{{ $order->delivery_time }}

@foreach ($order->order_statuses()->get() as $order_status) @if (!$loop->last) @if (($order_status['status'] != 'pending'))

{{ __('api.user_order_statuses.' . $order_status['status']) }}

@endif @else

{{ __('api.user_order_statuses.' . $order_status['status']) }}

@endif @endforeach

{{ __('api.user_order_statuses.' . $order['status']) }}

{{ __('api.user_order_statuses_details.' . $order['status']) }}

تفاصيل الطلب
@endforeach @else
لا يوجد طلبات حاليا!
@endif
{{ $orders->links() }}
@endsection