@extends('layouts.dashboard') @section('title', 'Products') @section('page-title', 'Product Management') @section('breadcrumb')
| ID | Image | Name | Category | Price | Stock | Actions |
|---|---|---|---|---|---|---|
| {{ $product->id }} |
@if($product->image_path)
|
{{ $product->name }} @if($product->is_featured) Featured @endif | {{ $product->category }} | ${{ number_format($product->price, 2) }} | @if($product->stock_quantity > 10) {{ $product->stock_quantity }} @elseif($product->stock_quantity > 0) {{ $product->stock_quantity }} @else Out of stock @endif |