@extends('layouts.default') @section('title', 'Заказы') @section('content')
Заказ | Дата создания | Клиент | Автор |
---|---|---|---|
{{$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 |