@extends('layouts.admin') @push('title', get_phrase('Categories')) @push('meta') @endpush @push('css') @endpush @section('content')

{{ get_phrase('All Category') }} ({{ $categories->count() }})

{{ get_phrase('Add new category') }}
@foreach ($categories as $category)
...
{{ $category->title }} ({{ $category->childs->count() }})
    @foreach ($category->childs as $child_category)
  • {{ $child_category->title }}
  • @endforeach
@endforeach
@endsection