PHP code example of robiussani152 / settings

1. Go to this page and download the library: Download robiussani152/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/ */

    

robiussani152 / settings example snippets


Robiussani152\Settings\SettingServiceProvider::class,

'Settings' => Robiussani152\Settings\Facades\Settings::class,

Settings::get('foo');
Settings::set('foo', 'bar');
Settings::forget('foo');
$settings = Settings::all();