@extends('admin.layouts.app') @section('page-title', 'Shop Products') @section('content')

Products

Inventory and catalog management.

Add Product
@forelse($products as $product) @empty @endforelse
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.
@if($products->hasPages())
{{ $products->links() }}
@endif
@endsection