@extends('hiremee-revamp.layouts.main-layout') @section('pageTitle', 'Events | HireMee') @section('metaKey', '') @section('metaKeyDescription', 'Events page of HireMee displays the upcoming, past, and present events of HireMee. Get to know the event details here.') @section('content')

Events

@php $past_year=date('Y-m-d H:i:s', strtotime('-1 year')); @endphp
@forelse($allEvents as $event) @if($event->created_at > $past_year)
@if(!empty($event->thumbnail_image)) Events @else Company Name @endif

{{$event->title}}

View more
@endif @empty
No Records Found
@endforelse
Past Events
{{--@include('hiremee-revamp.partials.new-subscription') --}}
@endsection