fomvasss/laravel-variables

Dynamic management of variables/configs in Laravel app
2,693 3
Install
composer require fomvasss/laravel-variables
Latest Version:5.9.0
PHP:^7.4|^8.0
License:MIT
Last Updated:May 27, 2026
Links: GitHub  ·  Packagist
Maintainer: fomvasss

Laravel Variables

Latest Stable Version Total Downloads License Quality Score

Dynamic management of variables/configs in Laravel app: creating and updating they in database, using cache and artisan commands, replace default Laravel configs, etc.

Installation

Run:

composer require fomvasss/laravel-variables

Publish the config, migration:

php artisan vendor:publish --provider="Fomvasss\Variable\VariableServiceProvider"

Run migrate:

php artisan migrate

Usage

Facade Variable

<?php
Variable::all();
Variable::get('var_key');
Variable::save('app_name', 'My Var');

Use groupped (multilanguages) variables:

<?php
Variable::setGroup('en')->all(); // return Collection!
Variable::setGroup('uk')->get('var_key');
Variable::get('var_key', null, 'en'); 
Variable::get('en|var_key');
Variable::save('uk|var_key', 'UK var');

Use array (json) variables:

Variable::saveArray('links', ['https::google.com', 'https://laravel.com']);   // save PHP array
Variable::getArray('links');    // return default PHP array!

Use cache variables:

Variable::setGroup('uk')->save('app_name', 'Blog');
Variable::setGroup('uk')->useCache(false)->get('app_name');
//or
Variable::get('var_key', null, 'uk', false);

Helpers

variable($name, $default = null, $group = null);

Replace Laravel configs with variables

Set in config/variables.php option config_key_for_vars=vars

Add keys in variable_config array: variable_key => config_key

Console command

variable:all            # Show all variables
variable:get            # Get single variable
variable:save           # Save single variable
variable:cache-clear    # Cache clear all variables

Use cache

Set in config/variables.php option cache.time seconds for cache.

Clear variable cache with console:

php artisan variable:cache-clear

or

php artisan cache:forget laravel.variables.cache

Clear variable cache in controller after update var:

Variable::cacheClear();
//or
\Cache::forget('laravel.variables.cache');

Related Packages

buzz/laravel-setting

Package changes config for laravel 5.*

1,098 1
d3lph1/laravel-configger

Persistent settings for your Laravel app

628 1
arcanedev/laravel-settings

This package allows you to persists configs/settings for Laravel projects.

143,099 74
arcanesoft/settings

Persistent settings for ARCANESOFT CMS.

2,574 1
danielrhodeswarp/kimino-config

Easy configuration setting and getting for Laravel projects

45 0