taksu/laravel-settings

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

This package is auto-updated.

Last update: 2024-05-15 11:51:03 UTC


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