Feat: Create Common Dropdown file

This commit is contained in:
Sallu9007
2025-03-23 18:21:52 +05:30
parent 1ba5f672fb
commit 07932d7194
3 changed files with 42 additions and 11 deletions

23
config/dropdowns.php Normal file
View File

@@ -0,0 +1,23 @@
<?php
return [
'activity_types' => [
'GL' => 'GL (Guest Lecture)',
'IC' => 'IC (Industry Connect)',
'STTP' => 'STTP (Short Term Training Program)',
],
'categories' => [
'Technical' => 'Technical',
'Social' => 'Social',
'Entrepreneurial' => 'Entrepreneurial',
'Life Skill' => 'Life Skill',
],
'levels' => [
'College' => 'College',
'State' => 'State',
'National' => 'National',
'International' => 'International',
],
];