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

Stay Updated with
Our Latest News

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

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

{{ $featuredNews->title }}

@else

No news available.

@endif
@if (request('search') && trim(request('search')) !== '')
Search results for: "{{ request('search') }}" Clear search
@endif @forelse($recentNews as $recentNewsItem) {{ $recentNewsItem->title }}
{{ $recentNewsItem->title }}
@empty
No recent news available
@endforelse
line-img
Latest News & Updates

Industry News & IRQS Updates

@if ($news->count() > 0)
@foreach ($news as $newsItem)
@endforeach
@if ($news->hasPages()) @endif @else

No news 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 News page --}} @include('components.enquiry-form-wrapper', ['pageSource' => 'news', 'formType' => 'enquiry']) @include('website.partials.footer') @include('website.partials.include_js') @endsection