@extends('admin.layouts.app') @section('title', 'Edit Product') @section('page-title', 'Edit Product: ' . $product->name) @section('content')
| Name | SKU | Price | Stock | Status | Actions |
|---|---|---|---|---|---|
| {{ $variant->name }} | {{ $variant->sku ?? '-' }} | {{ $currency_symbol }}{{ number_format($variant->price, 2) }} | {{ $variant->stock_quantity }} @if($variant->isLowStock()) (Low) @endif | {{ $variant->is_active ? 'Active' : 'Inactive' }} | |
| No variants. Add one above. | |||||