madeadi / laravel-settings
This package is abandoned and no longer maintained.
The author suggests using the taksu/laravel-settings package instead.
There is no license information available for the latest version (1.1.3) of this package.
Contain setting package that Taksu.tech always use
1.1.3
2023-08-15 10:06 UTC
Requires
- php: ^8.1
- laravel/framework: ^10.0
README
This is the Setting package that is used by Taksu.tech projects.
Installation
Run composer require.
composer require "taksu/laravel-settings"
Add the service provider to config/app.php
"providers" => [
...,
Taksu\Settings\SettingServiceProvider::class,
]
Publish the migration file to create the table.
php artisan vendor:publish --provider "Taksu\Settings\SettingServiceProvider" --tag migrations