Product / Detail

@include('admin.partials.company-overview', array('company' => $product->company))

Product Detail

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) product image @empty

No images added

@endforelse