@extends('frontend.layouts.app') @section('meta') @php $metaData = getMeta('forum'); @endphp @endsection @section('content')
@csrf
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('forum_category_id')) {{ $errors->first('forum_category_id') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@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('style') @endpush @push('script') @endpush