@extends('admin.layouts.app') @section('title', 'Categories') @section('content')
| Category | Subcategories | Products | Status | Actions |
|---|---|---|---|---|
|
@if($category->image)
{{ $category->name }}
@if($category->description)
{{ Str::limit($category->description, 50) }}
@endif
|
{{ $category->children_count }} | {{ $category->products_count }} | @if($category->is_active) Active @else Inactive @endif | |
|
@if($child->image)
|
- | {{ $child->products_count ?? 0 }} | @if($child->is_active) Active @else Inactive @endif | |
| No categories found. Add your first category | ||||