@extends('layouts.app') @section('css') @endsection @section('content')
@include('partials.title-pad', [ 'title' => __('Events'), 'search' => $search, 'searchPlaceholder' => __("Search Name ..."), 'list' => $events, // 'export' => 'premium.feature.export', 'filter' => 'filter' ])
Events
@php $startingIndex = ($events->currentPage() - 1) * $events->perPage() + 1; @endphp @forelse ($events as $key => $event) @empty @endforelse
S.No. Name University Event Creation Date & Time Event Date & Time Type Action
{{++$key}} {{$event->title ?? 'NA'}} {{$event->university->name ?? 'NA'}} {{$event->created_at}} {{$event->display_start}} {{$event->type}}

{{ __('labels.no_records_found') }}


{{ $events->appends(request()->query())->links('partials.pagination') }}
{{-- Graph --}}
Event Location
@endsection @section('scripts') @endsection