@extends('layouts.app') @section('title', 'Products') @php $breadcrumbs = [['label' => 'Masters', 'url' => '#'], ['label' => 'Products']]; @endphp @section('content')

Product Master

Manage your product catalog

@can('products.create') New Product @endcan
@forelse($products ?? [] as $product)
{{ $product->sku ?? '' }}
{{ $product->name ?? '' }}

{{ $product->category ?? '' }}

₹{{ number_format($product->unit_price ?? 0, 2) }} {{ $product->uom->symbol ?? '' }}
@empty

No products found. Create your first product to get started.

@endforelse
@endsection @push('scripts') @endpush