In this article we’ll explain of how to get config value in Laravel. We will implement a how to get value from a config file in Laravel. This example will help you get the Laravel config value in the controller and blade file. Let’see more details of what a config file is and how to use it.
How to get config value in Laravel? A simple explain.
Laravel stores configuration values in the config/ directory. These files allow you to set various options for Laravel.
Each config file returns an associative array containing key-value pairs.
Why use config files?
Laravel config files help you:
- Centralize application settings.
- Easily switch between environments.
- Improve code maintainability and readability.
Example:
1. Get config value using config() function
$app_name = config('app.name');
2. Get config value in using Config facade.
$appName = Config::get('app.name');
3. Using config values in blade templates
You can use config values directly in your views:
<h1>{{ config('app.name') }}</h1>
I hope this tutorial help you.