@extends('layouts.main') @section('page-id', '6036672caa47ec1546c2d39b') @section('body-class', 'sand') @section('content')

Events

Filter by:
Filter By
@if (count($articles) > 0) @foreach ($articles as $article) @php $articleCategory = $article->categories()->first(); @endphp @if($articleCategory->title === 'Future Events' )

{{ $article->title }}

@if($article->start_date)

{{ $article->end_date ? date('d-m-Y', strtotime($article->start_date)).' - '.date('d-m-Y', strtotime($article->end_date)) : date('d-m-Y', strtotime($article->start_date))}}

@endif
{!! $article->body !!}
@else @endif @endforeach @else
No articles can be found.
@endif
@endsection