@php
$showLoading = true;
if(
(!empty($noticeboards) and $noticeboards) or
!empty($assignment) or
(!empty($isForumPage) and $isForumPage) or
(!empty($isForumAnswersPage) and $isForumAnswersPage)
) {
$showLoading = false;
}
@endphp
@if(!empty($isForumAnswersPage) and $isForumAnswersPage)
@include('web.default.course.learningPage.components.forum.forum_answers')
@elseif(!empty($isForumPage) and $isForumPage)
@include('web.default.course.learningPage.components.forum.forum')
@elseif(!empty($noticeboards) and $noticeboards)
@include('web.default.course.learningPage.components.noticeboards')
@elseif(!empty($assignment))
@include('web.default.course.learningPage.components.assignment')
@endif
{{ trans('update.please_wait_for_the_content_to_load') }}