@extends('layouts.main-app') @section('title', 'Homepage') @section('content') {{-- Navbar --}} @include('layouts.navbar', [ 'headerTitle' => 'News and Insight', 'headerDescription' => '', ]) {{-- Page Content --}} {{-- Main Content --}} 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) Gallery {{-- Swiper --}} @foreach ($news->gallery as $index => $slide) @include('frontend.components.newsudpate.newscard-gallery', [ 'image' => $slide['image'], ]) @endforeach {{-- Prev/Next --}} @endif {{-- Modal Overlay --}} {{-- Close --}} × {{-- Big Image (scrollable) --}} {{-- Alpine + Swiper Setup --}} @endsection
Admin
{{ \Carbon\Carbon::parse($news->date)->format('M d, Y') }}
{!! $news->description_with_assets !!}