@extends($_ENV['admin-url'].'.layouts.main') @section('title') Catégories @stop @section('content')

Catégories
Listing

@include('includes.notification')

Ajouter une nouvelle catégorie

@if($categories->isEmpty())

Pas de catégorie

@else
@foreach($categories as $category) @foreach($category->children as $ch) @foreach($ch->children as $ch2) @endforeach @endforeach @endforeach
# Nom Position Description Mots Clés Actions
{{ $category->id }} {{ $category->name }} {{ $category->position }} {{ $category->description }} {{ $category->keywords }}
{{ $ch->id }} {{ $ch->name }} {{ $ch->position }} {{ $ch->description }} {{ $ch->keywords }}
{{ $ch2->id }} {{ $ch2->name }} {{ $ch2->position }} {{ $ch2->description }} {{ $ch2->keywords }}
@endif @stop @section('scripts') @parent @stop