Files
Global-Jain/config/access.php

21 lines
511 B
PHP
Raw Normal View History

2025-11-05 10:37:10 +05:30
<?php
/**
* Access file contain all constant variables declaration which will be globally accessible for access event.
*/
return [
// Configurations for the user
'users' => [
// The name of the super administrator role
'super_admin_role' => 'Super-Admin',
// The name of the super administrator role
'admin_role' => 'Admin',
// The default role all new registered users get added to
'default_role' => 'Admin',
'shravak' => 'Shravak'
]
];