{{-- $category is passed as NULL to the master layout view to prevent it from showing in the breadcrumbs --}} @extends ('forum.master', ['category' => null]) @section ('content')

{{ trans('forum::general.index') }}

@can ('createCategories') @include ('forum.category.modals.create') @endcan
@foreach ($categories as $category) @include ('forum.category.partials.list', ['titleClass' => 'lead']) @endforeach @stop