@extends('dashboard.body.main') @section('container')

Información Detalles del pedido

profile-pic
@if ($order->order_status == 'pending')
@method('put') @csrf Cancelar
@endif
@foreach ($orderDetails as $item) @endforeach
No. Photo Product Name Product Code Quantity Price Total(+vat)
{{ $loop->iteration }} @if(!empty($item->product->product_image) && file_exists(public_path('storage/products/'.$item->product->product_image))) @elseif(!empty($item->product->product_image) && file_exists(public_path('upload/products/'.$item->product->product_image))) @else
@endif
{{ $item->product ? $item->product->product_name : ($item->custom_product_name ?? 'Producto Común') }} {{ $item->product ? $item->product->product_code : '—' }} {{ $item->quantity }} {{ $item->unitcost }} {{ $item->total }}
@include('components.preview-img-form') @endsection