@extends('admin.layouts.app') @section('page-title', 'Shop Products') @section('content')
Inventory and catalog management.
| Product | Brand | Price | Inventory | Visibility | Actions |
|---|---|---|---|---|---|
|
{{ $product->name }} {{ $product->slug }} |
{{ $product->brand?->name ?? '-' }} | ${{ number_format($product->price, 2) }} |
{{ $product->qty }} in stock
|
@if($product->is_visible) Visible @else Hidden @endif | |
| No products found. | |||||