Skip to content

Robiussani152/settings

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Settings package for Laravel

Version Downloads

This package is for managing most basic settings in your laravel application like site title, site logo etc. You can add your custom settings using this package.

Getting Started

1. Install

Run the following command:

composer require robiussani152/settings

2. Register (for Laravel < 5.5)

Register the service provider in config/app.php

Robiussani152\Settings\SettingServiceProvider::class,

Add alias if you want to use the facade.

'Settings' => Robiussani152\Settings\Facades\Settings::class,

Usage

You can use the facade Setting::get('foo')

Facade

Settings::get('foo');
Settings::set('foo', 'bar');
Settings::forget('foo');
$settings = Settings::all();

License

The MIT License (MIT). Please see LICENSE for more information.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages