@extends('layouts.portal') @section('content')
@if(isset($blogs) && $blogs->count() > 0)
@foreach($blogs as $blog)
@if($blog->image) {{ $blog->title }} @else
📚
@endif
{{ $blog->created_at->format('M d, Y') }}

{{ $blog->title }}

{{ strip_tags($blog->description) }}
Read Full Article →
@endforeach
{{ $blogs->links() }}
@else

No blog posts available at the moment. Check back soon!

@endif
@endsection