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

{{ $news->title }}

{{ $news->title }} {{ $news->category->name ?? 'Uncategorized' }}
user Admin
{!! $news->content !!}
@forelse($relatedNews as $relatedNewsItem)
@if ($relatedNewsItem->image_url) {{ $relatedNewsItem->title }} @endif
{{ $relatedNewsItem->title }}
@empty

No related news at the moment. Check back soon for updates.

@endforelse
@forelse($categories as $category) {{ $category->name }} ({{ $category->news_count }}) @empty No categories available @endforelse
@if ($relatedNews->count() > 0) @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
{{-- Request a Quote Button Component --}} @include('components.request-quote-button')
{{-- Include enquiry form modal for News Details page --}} @include('components.enquiry-form-wrapper', ['pageSource' => 'news-details', 'formType' => 'enquiry']) @endsection