Simple Settings package for laravel application for composer version 2
hemarao/laravel-settings is a Laravel package for simple settings package for laravel application for composer version 2.
It currently has 0 GitHub stars and 3.113 downloads on Packagist.
Install it with composer require hemarao/laravel-settings.
Discover more Laravel packages by hemarao
or browse all Laravel packages to compare alternatives.
Last updated
A Laravel package that provides laravel applications settings module which needed in every application.
Supports PHP >= 7.2
Add the following to your composer file.
"hemarao/laravel-settings": "3.0"
or run the following command:
composer require hemarao/laravel-settings --dev
add your new provider to the providers array:
'providers' => [
// ...
\Hemarao\Laravelsettings\app\Providers\SettingServiceProvider::class
// ...
],
and add Setting class to the aliases array:
'aliases' => [
// ...
'Settings' => \Hemarao\Laravelsettings\app\Facades\Setting::class
// ...
],
run the following command:
php artisan vendor:publish
config/settings.php and resources/vendor/settings will be added to your laravel project.
you can set table name in config/settings.php
return [
// ...
// settings package table name the default is `settings`
'table' => 'settings'
// ...
];
the default table name is settings. then run the migration command
php artisan migrate
settings table will be migrated to your Database.
after publishing the package new config file added config/settings.php update values as your business requirement:
return [
//settings route
'route' => 'settings',
'middleware' => ['web', 'auth'],
// hidden records not editable from interface when set to false
'show_hidden_records' => false,
//javascript format
'date_format' => 'mm/dd/yyyy',
// number of digits after the decimal point
'number_step' => 0.001,
// upload path for settings of type file
'upload_path' => 'uploads/settings',
// valid mime types for settings of type file
'mimes' => 'jpg,jpeg,png,txt,csv,pdf',
'per_page' => 10,
// settings package table name the default is `settings`
'table' => 'settings'
];
the default route for settings is
your-domain/settings
it will shows a list of all settings you have and you can manage your settings from there.
in the code to get a setting value use the facade like that
Validate if the key exist:
\Settings::has('SETTING_KEY');
\Settings::get('SETTING_KEY');
\Settings::get('SETTING_KEY', 'Default value if not exist');
for example:
\Settings::get('SITE_TITLE', 'Laravel Settings');
also you can use astrisk to get group of settings. for example:
\Settings::get('MAIL_*');
will return an array of all settings with keys started with MAIL such as:
[
'MAIL_DRIVER' => 'smtp',
'MAIL_HOST' => 'mailtrap.io',
'MAIL_PORT' => '2525',
]
in case of file type a full path will return:
config('settings.upload_path') . '/' . $value;
such as:
uploads/settings/site_logo.png
===================================