@extends('layouts.webpage.main_two') @section('page-title', 'Blog') @section('content')
Blog

Blog

@foreach($blogs as $blog)
{{ $blog->title }}

{{ \Carbon\Carbon::parse($blog->created_at)->format('F d, Y') }} | {{ $blog->category ?? 'General' }}

{{ $blog->title }}
Read More →
@endforeach @if($blogs->isEmpty())

No blogs available at the moment.

@endif
@endsection