@extends('design_1.web.layouts.app') @push('styles_top') @endpush @section('content')
{{-- Hero & Cover --}} @include('design_1.web.forums.search.includes.hero')
{{ trans('update.n_search_results', ['count' => $totalTopicsCount]) }}

{{ trans('update.explore_search_results_from_the_following_list') }}

{{-- Lists --}}
@if(!empty($forumTopics) and !$forumTopics->isEmpty())
@include('design_1.web.forums.components.cards.topic.index',['forumTopics' => $forumTopics, 'cardClassName' => "mt-24"])
@if(!empty($hasMoreForumTopics))
{{ trans('update.load_more') }}
@endif @else @include('design_1.panel.includes.no-result',[ 'file_name' => 'webinar.png', 'title' => trans('update.instructor_not_have_topics'), 'hint' => '', ]) @endif
{{-- Right --}}
@if(!empty($popularTopics) and count($popularTopics)) @include('design_1.web.forums.topics.lists.includes.popular_posts') @endif @if(!empty($topUsers) and count($topUsers)) @include('design_1.web.forums.topics.lists.includes.top_users') @endif
{{-- Search Drawer --}} @include('design_1.web.forums.search.includes.search_drawer') @endsection @push('scripts_bottom') @endpush