Introduction

Installation

laravel-settings can be installed via composer:

composer require rawilk/laravel-settings

When using the database or eloquent drivers, you should publish the migration files. You can publish and run the migrations with:

php artisan vendor:publish --tag="settings-migrations"
php artisan migrate

You can publish the configuration file with:

php artisan vendor:publish --tag="settings-config"

You can view the default configuration here: https://github.com/rawilk/laravel-settings/blob/main/config/settings.php

Previous
Requirements
Caught a mistake? Suggest an edit on GitHub