@extends('backend.layouts.grid') @section('title', __('Events')) @section('link', route('admin.events.create')) @section('content')
| {{ __('#') }} | {{ __('Image') }} | {{ __('Campus') }} | {{ __('Shift') }} | {{ __('Class') }} | {{ __('Section') }} | {{ __('Student') }} | {{ __('Event Type') }} | {{ __('Title') }} | {{ __('Short Description') }} | {{ __('Event Date') }} | {{ __('Action') }} |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $event->id }} | {{ $event->campus }} | {{ $event->shift }} | {{ ($event->class_id == 0)?"All":shortertext($event->class_id, 70) }} | @if($event->section == 0) {{ 'All' }} @else {{ studentSection($event->section) }} @endif | {{ studentName($event->student_id) }} | {{ ($event->event_date < date('Y-m-d'))?"Activities":"Upcoming" }} | {{ shortertext($event->title, 30) }} | {{ shortertext($event->short_description, 70) }} | {{ date('d M, Y', strtotime($event->event_date)) }} |
|