madeadi / laravel-settings
Contain setting package that Taksu.tech always use
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/madeadi/laravel-settings
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