@extends('layout.default') @section('title') {{ __('forum.forums') }} - {{ config('other.title') }} @endsection @section('meta') @endsection @section('breadcrumbs') @endsection @section('nav-tabs') @include('forum.partials.buttons') @endsection @section('page', 'page__forums--index') @section('main') @foreach ($categories as $category)

{{ $category->name }}

@if ($category->forums->isNotEmpty()) @else
No forums in category.
@endif
@endforeach @endsection @section('sidebar')

{{ __('forum.stats') }}

{{ __('forum.forums') }}
{{ $num_forums }}
{{ __('forum.topics') }}
{{ $num_topics }}
{{ __('forum.posts') }}
{{ $num_posts }}

{{ __('common.actions') }}

@csrf @method('PUT')

@endsection