feat: Implement Event management features including CRUD operations and routing

This commit is contained in:
2025-08-22 11:03:10 +05:45
parent ce09f98c55
commit 711ae9caf9
11 changed files with 625 additions and 5 deletions

View File

@@ -66,13 +66,13 @@ return [
[
'text' => 'Franchise Request',
'url' => 'admin/franchise',
// 'can' => ['franchise.index'],
'can' => ['franchise.index'],
],
[
'text' => 'Newsletter',
'url' => 'admin/newsletter',
// 'can' => ['newsletter.index'],
'can' => ['newsletter.index'],
],
],
],
@@ -133,6 +133,14 @@ return [
'can' => ['service.index'],
],
[
'text' => 'Events',
'url' => 'admin/event',
'icon' => 'ri-feedback-line',
'module' => 'CCMS',
'can' => ['event.index'],
],
[
'text' => 'Team',
'url' => 'admin/team',