Files
admin/config/rolepermission.php
Husanjonazamov e0f1989655 classify admin
2026-02-24 12:52:01 +05:00

19 lines
765 B
PHP

<?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;