@extends('admin.layouts.app') @section('title', 'Categories') @section('content')
@forelse($categories as $cat) @empty @endforelse
# Category Parent Products Visible
{{ $cat->sort_order }}
@if($cat->icon_svg)
{!! $cat->icon_svg !!}
@endif
{{ $cat->name }}
{{ $cat->slug }}
{{ $cat->parent?->name ?? '—' }} {{ $cat->products_count }} {{ $cat->is_visible ? 'Yes' : 'Hidden' }}
@csrf @method('DELETE')
No categories yet
Add your first category — Laptops, Desktops, Servers…
@if($categories->hasPages())
{{ $categories->links() }}
@endif
@endsection