@php use LaraBB\Category\Models\Category; use LaraBB\Forum\Models\Forum; use LaraBB\Thread\Models\Thread; /** @var Category $category */ /** @var Forum $forum */ /** @var Thread $thread */ @endphp @extends('layouts.master') @section('content') @include('partials.messages')
{!! button('Create Thread')->permission($currentUser->forumPermissions[$forum->uuid]->getAttribute('create_threads')) ->type('link') ->href(route('thread-create', [$forum->slug])) ->class('btn btn-purple text-uppercase') ->icon('fas fa-fw fa-plus') ->render() !!}
@forelse($forum->threads as $thread) @empty
@lang('There are no threads in this forum.')
@endforelse
{!! button('Create Thread')->permission($currentUser->forumPermissions[$forum->uuid]->getAttribute('create_threads')) ->type('link') ->href(route('thread-create', [$forum->slug])) ->class('btn btn-purple text-uppercase') ->icon('fas fa-fw fa-plus') ->render() !!}
@stop