@extends('layouts.admin-simple') @section('title', 'Products') @section('page-title', 'Products') @section('breadcrumb')
| Product | Category | Standard | Application | Specifications | Status | Actions |
|---|---|---|---|---|---|---|
|
@if($product->image)
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 |
||||||