@extends('layouts.app') @section('title', 'Product Details') @section('content') @can('view_products')
Generic Name
{{ $product->generic_name ?? '-' }}
Category
{{ $product->category->name }}
Supplier
{{ $product->supplier?->name ?? '-' }}
Batch No
{{ $product->batch_no ?? '-' }}
Barcode
{{ $product->barcode ?? '-' }}
Unit
{{ $product->unit }}
Manufacturer
{{ $product->manufacturer ?? '-' }}
Expiry Date
{{ displayDate($product->expiry_date) }}
Description
{{ $product->description ?? '-' }}
| Invoice | Qty | Price | Date |
|---|---|---|---|
| {{ $item->sale->invoice_no }} | {{ $item->quantity }} | ${{ number_format($item->price, 2) }} | {{ displayDate($item->sale->created_at) }} |