@extends('admin.layouts.app') @section('title', 'Categories') @section('header_title', 'Product Categories') @section('content')
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif

Jewellery Categories

Organize your micro gold, bridal, and impon payal collections.

NEW CATEGORY
@foreach($categories as $category)
{{ strtoupper($category->status) }}

{{ $category->name }}

slug: {{ $category->slug }}

{{ $category->description ?? 'No description provided.' }}

{{ $category->products_count }} Products
@endforeach
@endsection