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

Product Standards

Manage product standards and specifications
{{ $standards->total() }} total standards
@forelse($standards as $standard) @empty @endforelse
Standard Category Applications Products Sort Order Status Actions
standard
{{ $standard->name }} @if($standard->code)
Code: {{ $standard->code }}
@endif @if($standard->description)
{{ 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
@if($standards->hasPages()) @endif
@endsection @push('scripts') @endpush