classify admin

This commit is contained in:
Husanjonazamov
2026-02-24 12:52:01 +05:00
commit e0f1989655
769 changed files with 1263008 additions and 0 deletions

18
config/rolepermission.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
$config = [
'dashboard' => array('read'),
'users_accounts' => array('create', 'read', 'update'),
'about_us' => array('read', 'update'),
'privacy_policy' => array('read', 'update'),
'contact_us' => array('read', 'update'),
'terms_condition' => array('read', 'update'),
'customer' => array('create', 'read', 'update', 'delete'),
'slider' => array('create', 'read', 'update', 'delete'),
'categories' => array('create', 'read', 'update', 'delete'),
'type' => array('create', 'read', 'update', 'delete'),
'property' => array('create', 'read', 'update', 'delete'),
'property_enquiry' => array('read', 'update', 'delete'),
'notification' => array('read', 'update', 'delete'),
];
return $config;