| ID | {{ $product->id ?? "" }} | Name | {{ $product->name ?? "" }} |
|---|---|---|---|
| Category | {{ $product->category->name ?? "" }} | Added on | {{ $product->created_at->format('d M, Y') ?? "" }} |
| Type | {{ $product->type ?? "" }} | Stock Location | {{ $product->stock_location ?? "N/A" }} |
| Unit Type | {{ $product->unit_type ?? "" }} | Unit Size | {{ $product->unit_size ?? "N/A" }} |
| Unit/Case | {{ $product->unit_per_case ?? "" }} | Quantity | {{ $product->quantity ?? "N/A" }} |
| Price | {{ $product->is_contact_company == 1 ? "Contact Company" : ($product->currency.$product->price) }} | Expiry Date | {{ $product->expiry_date ?? "N/A" }} |
| Description | {{ $product->description ?? "" }} | ||
| Images |
@forelse($product->productImages as $img)
@empty
No images added @endforelse |
||