National Events Create

@include('layouts.admin.alerts') @if (count($events)>0) @foreach ($events as $key => $item) @endforeach
# Title Cover Image Location Date Intro Content Link Action
{{ $key+1 }} {{ $item->title }} {{ $item->location }} {{ date('d-m-Y', strtotime($item->date)) }} {{ \Illuminate\Support\Str::limit($item->intro, 20, $end='...') }} @if($item->content != NULL ) {!! \Illuminate\Support\Str::limit($item->content, 30, $end='...') !!} @else No-Data-to-display @endif @if($item->link != NULL ) {!! \Illuminate\Support\Str::limit($item->link, 30, $end='...') !!} @else No-Data-to-display @endif Edit
@csrf {{ method_field('DELETE') }}
@else No Events Added Yet @endif