@extends('layouts.app3') @section('content')

Events

@if($blogs->count() > 0)
@foreach($blogs as $blog)
@if($blog->image) {{ $blog->title }} @else
{{ $blog->title }}
@endif

{{ $blog->title }}

@if($blog->is_featured) Featured @endif
📂 {{ $blog->category }}
{{ $blog->excerpt_or_content }}
@if($blog->tags)
@foreach($blog->tags as $tag) #{{ $tag }} @endforeach
@endif
@endforeach
{{ $blogs->links() }}
@else

No Blog Posts Found

There are currently no published blog posts. Please check back later.

@endif
@endsection