@extends('layouts.master') @section('title', 'Our Blog') @section('content')

Our Latest News & Blog

@forelse($blogs as $blog)
{{ $blog->title }}
  • {{ $blog->author ?? 'Admin' }}
  • {{ \Carbon\Carbon::parse($blog->created_at)->format('d M, Y') }}

{{ $blog->title }}

{{ Str::limit($blog->short_description, 120) }}

Read More
@empty

No blog posts available right now.

@endforelse
{{ $blogs->links('pagination::bootstrap-5') }}
@endsection