@extends('admin.layouts.home') @section('title', 'Product Categories') @section('styles') @endsection @section('content')

Product Categories

Dashboard
@foreach($categories as $category)
{{ $category->name }}

{{ Str::limit($category->description, 100) ?? 'No description available.' }}

{{ $category->products_count }} Products View Products
@endforeach
Add New Category

Create a new product category

@endsection @section('scripts') @endsection