PHP code example of larapp / laravel-options

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

    

larapp / laravel-options example snippets


return [
   'some-directive' => 'some value',
];

$option = new \Larapper\Options\Model\Option();
$option->name = 'some-directive';
$option->type = 'string';
$option->value = 'some user value';
$option->save();

$value = config('options.some-directive');

use Larapp\Options\Facade\Options;

Options::refresh();
shell
$ php artisan migrate
shell
$ php artisan options:clear