@extends('layouts.app', ['title' => __('Orders')]) @section('content')

{{ "#".$order->id." - ".$order->created_at->format(config('settings.datetime_display_format')) }}

@include('orders.partials.orderinfo') @include('orders.partials.actions.buttons',['order'=>$order])
@if(config('app.isft'))
{{ __("Order tracking")}}
@include('orders.partials.map',['order'=>$order])
@endif
{{ __("Status History")}}
@include('orders.partials.orderstatus')
@if(auth()->user()->hasRole('client')) @if($order->status->pluck('alias')->last() == "delivered")
@include('orders.partials.rating',['order'=>$order]) @endif @endif
@include('layouts.footers.auth') @include('orders.partials.modals',['order'=>$order])
@endsection @section('head') @endsection @section('js')