@extends('layouts.app') @section('content')

Products

Manage barcode, QR, variants, bundles, tax, stock and smart-preview details for billing.

Add product
Total products{{ number_format($products->total()) }}
Low stock{{ number_format($lowStockCount) }}
Categories{{ number_format($categories->count()) }}
Active filter{{ request('stock') === 'low' ? 'Low stock' : 'All' }}
@forelse ($products as $product) @empty @endforelse
Product Category Barcode Price Tax Stock Status Actions
{{ $product->name }}
{{ $product->sku }} {{ $product->is_combo ? '- Combo' : '' }}
{{ $product->category?->name ?? 'Uncategorized' }} {{ $product->barcode ?: '-' }} Rs {{ number_format((float) $product->sale_price, 2) }} {{ $product->tax_rate }}% {{ $product->stock_quantity }} / {{ $product->low_stock_threshold }} {{ ucfirst($product->status) }}
Edit
@csrf @method('DELETE')
No products found.
{{ $products->links() }}
@endsection