@extends('admin.layouts.dashbord_app') @section('styles') @endsection @section('content')
@if (session('success'))
{{ session('success') }}
@endif
@csrf







File size is more than 5mb

Events List

@foreach($events as $event) @endforeach
Title Mode Type Description Start Date End Date Start Time End Time Timezone Flyer Registration Link Joining Link Watch Recording Actions
{{ ucfirst($event->title) }} {{ $event->mode }} {{ $event->type }}
{{ \Illuminate\Support\Str::limit($event->description, 10) }} @if(strlen($event->description) > 10) Read More @endif
{{ \Carbon\Carbon::parse($event->startDate)->format('d-m-Y') }} {{ $event->endDate ? \Carbon\Carbon::parse($event->endDate)->format('d-m-Y') : '' }} {{ $event->startTime }} {{ $event->endTime }} {{ $event->timezone }} @if($event->flyer) Flyer @else N/A @endif {{ $event->watchRecording }} @if($event->flyer) Flyer @else N/A @endif {{ $event->registrationLink }} {{ $event->joiningLink }} {{ $event->watchRecording }} Edit
@csrf @method('DELETE')
@endsection @section('scripts') @endsection