@extends('website.layout.app') @section('title', $news->meta_title ?? 'Invinaa') @section('meta_keywords', $news->meta_keyword ?? '') @section('meta_description', $news->meta_description ?? '') @section('content')
{{ $news->alt_image ?? '' }}

{{ $news->title ?? '' }}

{!! $news->description ?? '' !!}
Recent News

@foreach ($recentNews as $recent)
{{ $recent->alt_image ?? '' }}

{{ $recent->title ?? '' }}

@endforeach
@endsection