How to Set Config Value Dynamically in Laravel?
Hey Artisan,
This article will provide some of the most important example how to set config value in laravel. step by step explain laravel set config dynamically. you can see laravel set config value dynamically. I explained simply step by step laravel set config value runtime. follow the below example for laravel set configuration value.
You can use this example with laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 versions.
Whenever you need to get configuration files value then you can set using config helper in Laravel. In my previous post i added how to get config file value in laravel. If you are working on Laravel then you should use Config facade for get and set value of config file. Maybe sometimes we require to set application url from app.php file or database name from database.php file so you can set this way:
Example:
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Config;
class DemoController extends Controller
{
/**
* Write code on Method
*
* @return response()
*/
public function index(Request $request)
{
/* Example 1: Set Config Value in Laravel */
Config::set('app.name','My Project App');
/* Example 2: Set Config Value in Laravel */
config()->set('app.name','My Project App');
}
}
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Use Google Translator in Laravel?
- Laravel Country State City Dropdown using Ajax Example
- Laravel 9 Clear Cache of Route, View, Config, Event Commands
- How to Search First Name and Last Name in Laravel Query?
- Laravel Add Custom Configuration File Example
- Laravel Livewire Delete Confirmation Example
- Laravel Telescope Installation and Configuration Tutorial
- Laravel Collection keys() Method Example
- How to Get Config Variable Value in Laravel?
- How to Configure Git Username and Email?
- How to Get Query Log in Laravel Eloquent?
- Laravel Create JSON File & Download From Text Example