Laravel Options Package
Created on February 12th, 2019
The Laravel Options package gives you the ability to add a simple key-value store in your laravel application. You can include this package with the following command:
composer require appstract/laravel-options
Next, be sure to publish the package vendor files:
php artisan vendor:publish --provider="Appstract\Options\OptionsServiceProvider"
And finally, run the migrations:
php artisan migrate
Now, you'll have a simple key-value store ability in your Laravel application.
Be sure to checkout the official Github page to learn more about this package: https://github.com/appstract/laravel-options.
Comments (0)