@extends('layouts.default') @section('title', 'Заказы') @section('content')

Список заказов

Поиск заказа:

@if ($count_orders > 0) @foreach($orders as $order) @endforeach {{!! $orders->links() !!}} @else

Нет заказов на данный момент

@endif
Заказ Дата создания Клиент Автор
{{$order->order_n}} Статус {{$order->status}} {{$order->created_at}} @foreach($companies as $company) @if($company->id == $order->company_registry_id) {{ $company->company_name}} @endif @endforeach {{$order->company_registry_id}} Сумма заказа {{$order->order_summary}} рублей @if($profile->id == $order->user_id) {{ $profile->first_name}} {{ $profile->last_name}} @endif
@endsection