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

Blog & Insights

Stay informed with the latest industry insights, certification updates, and expert guidance.

Stay Informed with
Our Blog

@if ($featuredBlog)
{{ $featuredBlog->title }} {{ $featuredBlog->category->name ?? 'Uncategorized' }}

{{ $featuredBlog->created_at->format('F j, Y') }}

{{ $featuredBlog->title }}

@else

No blogs available.

@endif
@if (request('search'))
Search results for: "{{ request('search') }}" Clear search
@endif @forelse($recentBlogs as $recentBlog) {{ $recentBlog->title }}
{{ $recentBlog->title }}
@empty
No recent blogs available
@endforelse
line-img
Insights &Updates

Ideas, Insights, and Inspiration

@if ($blogs->count() > 0)
@foreach ($blogs as $blog)
{{ $blog->title }} {{ $blog->category->name ?? 'Uncategorized' }}
{{ $blog->title }}
@endforeach
@if ($blogs->hasPages()) @endif @else

No blogs found

No blogs available at the moment.

@endif

Let's get you certified-Start your journey today!

Connect with our experts for a seamless and hassle-free certification process.

Get Certified
background-img
man-img
button
{{-- Include enquiry form modal for Blogs page --}} @include('components.enquiry-form-wrapper', ['pageSource' => 'blogs', 'formType' => 'enquiry']) @endsection