@extends('dashboard.body.main') @section('container')
@if (session()->has('success')) @endif @if (session()->has('error')) @endif

Category List

Manage your product categories effectively to improve organization
and customer navigation.

@forelse ($categories as $category) @empty @endforelse
No. Description Action
{{ (($categories->currentPage() * 10) - 10) + $loop->iteration }} {{ $category->name }} {{ $category->slug }} {{ Str::limit($category->description, 50) }}
@method('delete') @csrf
No categories found. Click "Create Category" to add one.
{{ $categories->links() }}
@endsection