PHP code example of miladev / lara-setting

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

    

miladev / lara-setting example snippets


Miladev\LaravelSettings\SettingServiceProvider::class,

'Setting' => \Miladev\LaravelSettings\Facades\Setting::class,

use Miladev\LaravelSettings\Facades\Setting;

Setting::set('setting_key', 'setting_value', $autoload); // create or update
// Here, $autoload = true if you want to indicate that this should be loaded by default.
Setting::has('setting_key'); // check whether the key exists or not
Setting::get('setting_key', 'default_value'); // get the value
Setting::forget('setting_key'); // remove from the settings table
Setting::clean(); // remove all rows from the settings table
Setting::all(); // get all settings
bash
php artisan migrate
bash
php artisan vendor:publish --provider="Miladev\LaravelSettings\SettingServiceProvider"