@extends('layouts.admin') @section('title', 'Products - ' . $shop->name) @section('content')
Manage products for {{ $shop->name }}
Total Products
Active Products
In Stock
Featured
| Product | SKU | Category | Price | Stock | Status | Actions |
|---|---|---|---|---|---|---|
|
@if($product->image_url)
{{ $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 |
|
Start building your product catalog by adding your first product.