1. Go to this page and download the library: Download cwsps154/app-settings library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
cwsps154 / app-settings example snippets
use CWSPS154\UsersRolesPermissions\AppSettingsPlugin;
$panel->plugins([AppSettingsPlugin::make()]);
use CWSPS154\AppSettings\Models\AppSettings;
use CWSPS154\UsersRolesPermissions\AppSettingsPlugin;
use CWSPS154\UsersRolesPermissions\UsersRolesPermissionsServiceProvider;
AppSettingsPlugin::make()
->canAccess(
UsersRolesPermissionsServiceProvider::HAVE_ACCESS_GATE,
AppSettings::VIEW_EDIT_SETTINGS
)->canAccessAppSectionTab(
UsersRolesPermissionsServiceProvider::HAVE_ACCESS_GATE,
AppSettings::APP_SECTION_SETTINGS
),