@extends('layouts.admin') @section('title','Products') @section('heading','Product catalog') @section('content')
New product
@forelse($products as $product)@empty@endforelse
ProductVendorCategoryPriceStockStatusActions
{{ $product->name }}
{{ $product->sku ?: $product->slug }}
{{ $product->vendor?->name }}{{ $product->category?->name ?? '—' }}{{ number_format((float)$product->effective_price,2) }} @if($product->sale_price){{ number_format((float)$product->price,2) }}@endif{{ $product->stock ?? 'Unlimited' }}{{ $product->is_active?'Active':'Inactive' }}Edit
@csrf @method('delete')
No products found.
@endsection