@extends('components.dashboard.layouts.master') @section('styles') @stack('datatableStyles') @endsection @section('title') {{ __('dashboard.order_summary') }} @endsection @section('content')

{{ __('dashboard.order_summary') }}

{{ $specialOrder->serial_number }}

{{ $specialOrder->product_name }}

{{ $specialOrder->quantity }}

{{ $specialOrder->material }}

{{ $specialOrder->sizes }}

@foreach($specialOrder->colors as $color)
@endforeach

{{ $specialOrder->notes }}

{{ \App\Enum\OrderStatusEnum::from($specialOrder->status)->label() }}

{{ $specialOrder->price ?? '--' }}

{{ $specialOrder->user->name ?? '--' }}

{{ $specialOrder->address->city ?? '--' }}

@if($specialOrder->hasMedia('images'))

{{ __('dashboard.images') }}

@foreach($specialOrder->getMedia('images') as $img) {{ $specialOrder->serial_number }} @endforeach
@endif

{{ __('dashboard.change_status') }}

@csrf @method('PATCH')

{{ __('dashboard.update_price') }}

@csrf @method('PATCH')
@endsection @section('script') @stack('datatableScripts') @endsection