@extends('layouts.admin-simple') @section('title', 'Products') @section('page-title', 'Products') @section('breadcrumb') @endsection @section('page-actions')
add Add Product
@endsection @section('content')
clear Clear

Products

Manage product catalog and specifications
{{ $products->total() }} total products
@forelse($products as $product) @empty @endforelse
Product Category Standard Application Specifications Status Actions
@if($product->image) {{ $product->name }} @else
inventory
@endif
{{ $product->name }}
{{ Str::limit($product->description, 60) }}
@if($product->is_featured) Featured @endif
category @if($product->application && $product->application->standard && $product->application->standard->category) {{ $product->application->standard->category->name }} @elseif($product->standard && $product->standard->category) {{ $product->standard->category->name }} @else N/A @endif @if($product->application && $product->application->standard)
{{ $product->application->standard->name }}
@if($product->application->standard->code)
{{ $product->application->standard->code }}
@endif @elseif($product->standard)
{{ $product->standard->name }}
@if($product->standard->code)
{{ $product->standard->code }}
@endif @else
N/A
@endif
@if($product->application) {{ $product->application->name }} @else No Application @endif {{ $product->specifications->count() }} specs @if($product->is_active) Active @else Inactive @endif
inventory
No products found

@if(request()->hasAny(['search', 'category', 'application', 'status'])) Try adjusting your search criteria or clear filters. @else Start by creating your first product. @endif

add Create First Product
@if($products->hasPages()) @endif
@endsection @push('scripts') @endpush