@if ($order->finished_at)
@endif
@if ($orderProducts = $order->orderProducts()->with('product')->get())
{{-- table content --}}
| {{ __('admin.product') }} |
{{ __('admin.quantity') }} |
{{ __('admin.price') }} |
{{ __('admin.total') }} |
@foreach ($orderProducts as $orderProduct)
| {{ $orderProduct->product->name ?? '----' }} |
{{ $orderProduct->quantity ?? '----' }} |
{{ $orderProduct->price ?? '----' }} |
{{ $orderProduct->total ?? '----' }} |
@endforeach
{{-- table content --}}
{{-- no data found div --}}
@if ($orderProducts->count() == 0)
{{ __('admin.there_are_no_matches_matching') }}
@endif
{{-- no data found div --}}
@endif
@if ($orderServices = $order->orderServices()->with('service',"size")->get())
{{-- table content --}}
{{-- table content --}}
{{-- no data found div --}}
@if ($orderServices->count() == 0)
{{ __('admin.there_are_no_matches_matching') }}
@endif
{{-- no data found div --}}
@endif