@extends('crm.master') @section('title', 'Products') @section('content')

Products

Manage your product catalogue

Add Product
@include('crm.components.alerts')
Reset
@forelse($products as $key => $product) @empty @endforelse
# Name SKU Category Tags Inventory Status
{{ $products->firstItem() + $key }} {{ $product->name }} {{ $product->sku }} {{ $product->category->name ?? '—' }} @forelse($product->tags as $tag) {{ $tag->name }} @empty @endforelse @if($product->inventory_type === 'assets') Assets @else Simple @if($product->inventory_amount !== null) {{ $product->inventory_amount }} @endif @endif @if($product->status === 'active') Active @elseif($product->status === 'inactive') Inactive @else Draft @endif

No products found

Add First Product
@if($products->hasPages()) @endif
@endsection