@extends('layouts.admin') @section('title', 'Category Management') @section('content')

Store Category Management

Organize skincare products into collections and categories.

Add New Category

@csrf

All Categories

@foreach($categories as $cat) @endforeach
Category Name Slug Product Count Status Actions
{{ $cat->name }} @if($cat->description)
{{ Str::limit($cat->description, 40) }}
@endif
{{ $cat->slug }} {{ $cat->products_count }} products {{ $cat->is_active ? 'Active' : 'Disabled' }}
Edit
@csrf @method('DELETE')
@endsection