@extends('layouts.main-app') @section('title', 'Homepage') @section('content') {{-- Navbar --}} @include('layouts.navbar', [ 'headerTitle' => 'News and Insight', 'headerDescription' => '', ]) {{-- Page Content --}}
{{-- Main Content --}}
{{ $news->title }}

Admin

{{ \Carbon\Carbon::parse($news->date)->format('M d, Y') }}

{{ $news->title }}

{!! $news->description_with_assets !!}

{{-- Sidebar --}}

Recent Posts

    @foreach ($allnews as $new)
  • {{ $new->title }} {{ $new->created_at->format('F d, Y') }}
  • @endforeach
{{-- Gallery Section --}} @if (isset($news->gallery) && count($news->gallery) > 0) @endif {{-- Modal Overlay --}}
{{-- Close --}} {{-- Big Image (scrollable) --}}
{{-- Alpine + Swiper Setup --}} @endsection