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

Product Categories

Manage product categories and hierarchies
{{ $categories->total() }} total categories
@forelse($categories as $category) @empty @endforelse
Category Standards Products Sort Order Status Actions
@if($category->image) {{ $category->name }} @else
category
@endif
{{ $category->name }}
{{ Str::limit($category->description, 60) }}
Slug: {{ $category->slug }}
{{ $category->standards->count() }} standards {{ $category->standards->sum(function($standard) { return $standard->applications->sum(function($app) { return $app->products->count(); }); }) }} products {{ $category->sort_order }} @if($category->is_active) Active @else Inactive @endif
category
No categories found

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

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