@extends('layouts.master') @section('title', 'Recent Orders | Alboosh - Timeless authenticity, born of the desert') @section('title-topbar', __('basic.recent orders')) @section('css') @endsection @section('fixedcontent') @if (Session::has('success'))
@endif @endsection @section('content'){{ __('basic.month order') }}
{{ __('basic.in progress month orders') }}
{{ __('basic.delivered month orders') }}
{{ __('basic.canceled month orders') }}
{{ __('basic.refund month orders') }}
{{ __('basic.orders amount') }}
| {{ __('basic.order number') }} | {{ __('basic.branch') }} | {{ __('basic.client') }} | {{ __('basic.worker') }} | {{ __('basic.status') }} | {{ __('basic.final price') }} | {{ __('basic.created') }} | {{ __('basic.last update') }} |
|---|---|---|---|---|---|---|---|
| {{ $item->code }} | @if($item->branch) {{ $item->branch?->name ?? "" }} @else {{ __('basic.not selected') }} @endif | @if($item->client) {{ $item->client->first_name }} @else {{ __('basic.not selected') }} @endif | @isset($item->creator?->first_name ?? "") {{ $item->creator?->first_name ?? "" }} @endisset | {{ $msg }} | {{ $item->final_price }} |
{{ date('Y-m-d', strtotime($item->created_at)) }} {{ date('h:i a', strtotime($item->created_at)) }} |
{{ date('Y-m-d', strtotime($item->updated_at)) }} {{ date('h:i a', strtotime($item->updated_at)) }} |