@extends('layouts.admin') @section('title', 'Products - ' . $shop->name) @section('content')

Product Management

Manage products for {{ $shop->name }}

Back to Shop

{{ $stats['total'] }}

Total Products

{{ $stats['active'] }}

Active Products

{{ $stats['in_stock'] }}

In Stock

{{ $stats['featured'] }}

Featured

Search & Filters
Products ({{ $products->total() }})
@if($products->count() > 0)
@foreach($products as $product) @endforeach
Product SKU Category Price Stock Status Actions
@if($product->image_url) {{ $product->name }} @else
@endif
{{ $product->name }}
@if($product->brand) {{ $product->brand }} @endif @if($product->featured) Featured @endif
{{ $product->sku ?? 'N/A' }} {{ $product->bizspot_category_path ?? 'Uncategorized' }}
@if($product->on_sale && $product->sale_price) ${{ number_format($product->sale_price, 2) }} ${{ number_format($product->price, 2) }} @else ${{ number_format($product->price, 2) }} @endif
{{ $product->stock_quantity ?? 0 }} @if($product->track_inventory) {{ ucfirst(str_replace('_', ' ', $product->stock_status)) }} @endif
@if($product->is_active) Active @else Inactive @endif
@else

No products found

Start building your product catalog by adding your first product.

@endif
@if($products->hasPages())
{{ $products->withQueryString()->links() }}
@endif @endsection @section('scripts') @endsection