Skip to content

DCODE-GROUP/laravel-configuration

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Configuration

This package provides a central way to store Laravel configuration and settings.

Installation

You can install the package via composer:

composer require dcodegroup/laravel-configuration

Then run the install command.

php artisan laravel-configuration:install

This will publish the migration file.

Run the migrations

php artisan migrate

Usage

A model is made available Dcodegroup\LaravelConfiguration\Models\Configuration.php You can use this as is or extend it via your own model.

Basic usage is like any other laravel model

Configuration::create([
  'name' => 'xero_leave_types',
  'value' => $data
]);

There are poly morphic fields on the table so you may also make a polymorphic relations to the configurations table if needed.

About

This provides a generic way to store app configurations in the database

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages