@extends('vendor.layout') @section('title','Products') @section('heading','Product catalog') @section('content')
{{ $products->total() }} products
@forelse($products as $product)@empty@endforelse
ProductCategorySKUPriceStockVisibility
{{ $product->name }}{{ $product->category?->name ?: 'Uncategorised' }}{{ $product->sku ?: '—' }}INR {{ number_format($product->effective_price,2) }}{{ $product->stock === null ? 'Unlimited' : number_format($product->stock) }}{{ $product->is_active?'Active':'Hidden' }}
No matching products.
@endsection