@extends('frontend.layouts.app') @section('meta') @php $metaData = getMeta('forum'); @endphp @endsection @section('content')

{{ __('Forum') }}

lmszai forum

{{ __('Forum Categories') }}

@foreach ($forumCategories as $forumCategory)
feature
{{ $forumCategory->title }}

{{ Str::limit($forumCategory->subtitle, 70) }}

@endforeach
feature
{{ __('Categories') }}

{{ count($forumCategories) }}

feature
{{ __('Post Topic') }}

{{ $totalForumPost }}

feature
{{ __('Answers') }}

{{ $totalForumAnswer }}

feature
{{ __('Members') }}

{{ $totalMember }}

{{ __('Recent Discussions') }}

@include('frontend.forum.partial.render-forum-posts')
@if (count($blogs) >= 1)

{{ __('Community Blog Articles') }}

@foreach ($blogs as $blog)
img
{{ @$blog->category->name }}

{{ Str::limit($blog->title, 50) }}

{{ $blog->user->name }} / {{ $blog->created_at->format(' j M, Y') }}

{!! Str::limit($blog->details, 200) !!}

@endforeach
@endif
@endsection @push('script') @endpush