madeadi / laravel-settings
This package is abandoned and no longer maintained.
The author suggests using the taksu/laravel-settings package instead.
Contain setting package that Taksu.tech always use
13.0.1
2026-07-21 11:51 UTC
Requires
- php: ^8.4
- laravel/framework: ^13.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\ServiceProvider::class,
]
Publish the migration file to create the table.
php artisan vendor:publish --provider "Taksu\Settings\ServiceProvider" --tag migrations