@extends('dashboard.body.main') @section('container')
| 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)))
|
{{ $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 }} |