Basic Information
- Product ID
- {{ $product->product_id }}
- Description
- {{ $product->description ?? 'No description provided.' }}
- HSN Code
- {{ $product->hsn_code ?? '—' }}
- GST %
- {{ $product->gst_percentage ? $product->gst_percentage . '%' : 'N/A' }}
- Status
-
@if($product->status)
Active
@else
Inactive
@endif
Price Information
- MRP
- ₹{{ number_format($product->mrp, 2) }}
- Distributor Price
- ₹{{ number_format($product->dealer_price, 2) }}
- Shop Price
- ₹{{ number_format($product->shop_price, 2) }}
- Ecom Price
- ₹{{ number_format($product->ecom_price, 2) }}