@extends('layouts.admin') @section('title', 'Forum Boards') @section('content')

Forum Boards

@forelse ($boards as $board) @empty @endforelse
Order Name Category Threads Access Status Actions
{{ $board->order }} {{ $board->name }} @if(!$board->is_public) RESTRICTED @endif {{ $board->category->name }} @if(!$board->category->is_public) CAT-RESTRICTED @endif {{ $board->threads->count() }} @if($board->is_public && $board->category->is_public) Public @else
@if(!$board->category->is_public)
Inherits Category Restrictions
@endif @if(!$board->is_public) @if($board->required_roles)
Roles: {{ implode(', ', $board->required_roles) }}
@endif @if($board->required_permissions)
Perms: {{ implode(', ', $board->required_permissions) }}
@endif @endif
@endif
{{ $board->is_active ? 'Active' : 'Inactive' }}
No boards found.
{{-- Access Control Legend --}}
Access Control Legend
Public: Accessible by all users (including guests)
Restricted boards are marked with a red badge
CAT-RESTRICTED: Category has access restrictions
Roles: User must have at least ONE of the listed roles
Perms: User must have ALL of the listed permissions
Note: Boards inherit category restrictions. If a category is restricted, all its boards require category access plus any additional board restrictions.
@endsection