@extends('admin.layouts.app') @section('title', 'Kateqoriyalar') @section('content')

Kateqoriyalar

Məhsul qruplarını buradan idarə edin. Əsas kateqoriya yaradın, sonra onun altında alt kateqoriyalar əlavə edin.

+ Kateqoriya əlavə et
@forelse($categories as $category)
@if($category->image) @endif
{{ $category->name }} Əsas kateqoriya · {{ $category->products_count }} məhsul
+ Alt kateqoriya Dəyiş
@csrf @method('DELETE')
@forelse($category->children as $child)
@if($child->image) @endif
{{ $child->name }} Alt kateqoriya · {{ $child->products_count }} məhsul
Dəyiş
@csrf @method('DELETE')
@empty
Bu əsas kateqoriyanın altında hələ alt kateqoriya yoxdur.
@endforelse
@empty
Hələ kateqoriya yoxdur.
@endforelse
@endsection