@extends('layouts.admin-simple') @section('title', 'Product Standards') @section('page-title', 'Product Standards') @section('breadcrumb')
| Standard | Category | Applications | Products | Sort Order | Status | Actions |
|---|---|---|---|---|---|---|
|
standard
{{ $standard->name }}
@if($standard->code)
Code:
@endif
@if($standard->description)
{{ $standard->code }}{{ Str::limit($standard->description, 60) }}
@endif
|
category {{ $standard->category->name }} | {{ $standard->applications->count() }} applications | {{ $standard->applications->sum(function($app) { return $app->products->count(); }) }} products | {{ $standard->sort_order }} | @if($standard->is_active) Active @else Inactive @endif | |
|
standard
No standards found@if(request()->hasAny(['search', 'category', 'status'])) Try adjusting your search criteria or clear filters. @else Start by creating your first product standard. @endif add Create First Standard |
||||||