@extends('layouts.app') @section('title', 'Blog Posts') @section('keywords', 'Blog posts, Articles, Facility management insights, Cleaning tips') @section('content')

Blog Posts

Manage and view all blog posts

@if(session('success')) @endif
@csrf @if($blogs->count() > 0)
@foreach($blogs as $blog)
@if($blog->featured_image)
{{ $blog->title }}
@endif
{{ ucfirst($blog->status) }} {{ $blog->created_at->format('M d, Y') }}

{{ $blog->title }}

{{ $blog->excerpt }}

{{ $blog->author }}
@endforeach
{{ $blogs->links() }}
@else

No blog posts yet

Get started by creating your first blog post.

Create Your First Post
@endif
@endsection