@extends('frontend.layouts.app') @section('page_title') Events & News @endsection @section('content')
Breadcrumb

News & Events

@if($events->count() > 0) @foreach($events as $index => $event)
@if($loop->iteration % 2 != 0)
{{ date('d M, Y', strtotime($event['date'])) }}
Session

{{ $event['title'] }}

{!! $event['description'] !!}

Read More
@else

{{ $event['title'] }}

{!! $event['description'] !!}

Read More
{{ date('d M, Y', strtotime($event['date'])) }}
Session
@endif
@endforeach
{{ $events->links('pagination::bootstrap-5') }}
@else

No News or Events Found

Stay tuned — new updates will be posted soon.

@endif
@endsection