PHP code example of the_alex_mark / laravel-settings

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

    

the_alex_mark / laravel-settings example snippets


// Получение и установка данных через фасад
Settings::get('example.enabled');
Settings::set('example.enabled', true);

// Получение данных через вспомогательную функцию
settings('example.enabled');

// Получение расположения файлов настроек
$path = settings_path();
ini
SETTINGS_PATH=settings/
bash
# Очистка
php artisan settings:clear

# Кеширование актуальных данных
php artisan settings:cache