@extends('layout.default')
@section('title')
{{ __('forum.forums') }} - {{ config('other.title') }}
@endsection
@section('meta')
@endsection
@section('breadcrumbs')
{{ __('forum.forums') }}
@endsection
@section('nav-tabs')
@include('forum.partials.buttons')
@endsection
@section('page', 'page__forums--index')
@section('main')
@foreach ($categories as $category)
@if ($category->forums->isNotEmpty())
@foreach ($category->forums as $forum)
-
@endforeach
@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') }}
@endsection