@extends('admin.layouts.app') @section('title', 'Products') @section('content')
| Name | Category | Price | Stock | Status | Actions |
|---|---|---|---|---|---|
|
{{ $product->name ?? '—' }}
@if($isUpdated)
Updated
@endif
|
{{-- Category (NULL SAFE) --}}
{{ $product->category?->name ?? '—' }} | {{-- Price --}}{{ $product->price !== null ? format_price($product->price) : '—' }} | {{-- Stock --}}{{ $product->stock_quantity ?? '—' }} | {{-- Status --}}{{ $product->is_active ? 'Active' : 'Inactive' }} | {{-- Actions --}}Edit |
| No products found | |||||