Product Information
{{ $product->product_name }}
Product Code: {{ $product->product_code }}
Price: {{ number_format($product->product_price, 2) }} THB
Weight: {{ $product->product_weight ?? 0 }} grams
Quantity: {{ $product->product_quantity }}
Status:
@if ($product->product_status == 'Active')
Active
@else
Inactive
@endif
Description:
{{ $product->product_description }}
Back to Product List