@extends('layouts.admin_layout') @section('content')

Manage Events

@if(Session::has('success'))

×{{ Session::get('success') }}

@endif @if(Session::has('error'))

{{ Session::get('error') }}

@endif

Event Lists

Add
@php $i=1;@endphp @foreach($events as $event) @endforeach
# Category Name Location Name Title Desktop Banner Mobile Banner Description Venue Details Start Date Time End Date Time Publish Status Status Cancel Event Action
{{$i++}} {{$event->event_category->category_name}} {{$event->event_location->location_name}} {{$event->title}} {{$event->desktop_banner}} {{$event->mobile_banner}} {!! html_entity_decode($event->description) !!} {{$event->venue_details}} {{$event->start_date_time}} {{$event->end_date_time}} @if($event->publish_status == 1) Published@elseif($event->publish_status == 2) Past @else not-published@endif @if($event->status == 1) Active @else In-Active@endif @if($event->cancel_status == 0) cancel @else re-schedule @endif
{{ method_field('DELETE') }}{{csrf_field()}}
@endsection