@extends($layoutPath ?? 'sitemanager::layouts.app') @section('title', $board->name) @push('head') {!! resource('sitemanager::js/image-optimizer.js') !!} {!! resource('sitemanager::css/board.default.css') !!} {!! resource('sitemanager::css/pagination.css') !!} @endpush @section('content')

{{ $board->name }} {{ $board->getSetting('enable_notice', false) ? number_format($posts->total() + $notices->count()) : number_format($posts->total()) }}

@if ($board->getSetting('enable_search', false))
@if($usesCategories) @endif @if($hasAnyFilter) Clear @endif
@endif
@if($posts->count() > 0) @include('sitemanager::board.partials.posts', ['posts' => $posts, 'notices' => $notices, 'board' => $board]) @endif @if(can('write', $board)) @endif
@endsection