@extends('layouts.master') @section('title','Event Categories') @section('content')

Event Categories


@forelse($event_categories as $key=>$category) @empty @endforelse
Name Created at Last Updated at Action
{{ $category->name }} {{ date('d M Y h:i:s a',strtotime($category->created_at)) }} {{ date('d M Y h:i:s a',strtotime($category->updated_at)) }}
Edit @livewire('Admin\EventCategory\DeactivateEventCategory',['event_category_id'=>\Crypt::encrypt($category->id)],key('event-category-'.$key))
No categories found
{{ $event_categories->links('pagination::bootstrap-5') }}
@endsection