taksu/laravel-settings

Contain setting package that Taksu.tech always use

Maintainers

Package info

github.com/taksu-tech/laravel-settings

pkg:composer/taksu/laravel-settings

Transparency log

Statistics

Installs: 157

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

13.0.1 2026-07-21 11:51 UTC

This package is auto-updated.

Last update: 2026-07-21 11:57:39 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\ServiceProvider::class,
]

Publish the migration file to create the table.

php artisan vendor:publish --provider "Taksu\Settings\ServiceProvider" --tag migrations