@extends('layouts.app') @section('content')
| Name | {{ $product->name }} |
|---|---|
| Category | {{ optional($product->category)->name }} |
| Subcategory | {{ optional($product->subcategory)->name }} |
| Brand | {{ optional($product->brand)->name }} |
| Price | ${{ number_format($product->price, 2) }} |
| Discount | {{ $product->discount }}% |
| Available Quantity | {{ $product->available_qty }} |
| Stock Threshold | {{ $product->stock_threshold_qty }} |
| Down Payment | ${{ number_format($product->down_payment, 2) }} |
| Status | {{ $product->is_active ? 'Active' : 'Inactive' }} |
| Description | {{ $product->description }} |
No variants
@endif