ItSolutionStuff.com

Laravel Add Custom Configuration File Example

By Hardik Savani • April 16, 2024
Laravel

Now, let's see article of laravel add custom configuration file. This article will give you simple example of laravel custom config file. we will help you to give example of laravel custom configuration file. you can see how to create custom config file in laravel. Let's get started with create your own config file laravel.

you can easily create custom configuration file in laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 version.

in this example, we will create google.php config file and set api key on there. then we will simply get value using config() helper. let's see example.

Example

now first add your new variable on env file as like bellow:

.env

...

GOOGLE_API_TOKEN=xxxxxxxx

config/google.php

<?php

return [

'api_token' => env('GOOGLE_API_TOKEN', 'your-some-default-value'),

];

Use it:

Route::get('helper', function(){

$googleAPIToken = config('google.api_token');

dd($googleAPIToken);

});

Output:

xxxxxxxx

now you can check your own.

i hope it can help you...

Tags: Laravel
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to use Laravel Model Observers?

Read Now →

Laravel 8 Clear Cache of Route, View, Config Command Example

Read Now →

How to Use Environment Variable in Angular?

Read Now →

Laravel Deployment on Cloudways with Envoyer

Read Now →

How to Set Config Value Dynamically in Laravel?

Read Now →

How to Get Config Variable Value in Laravel?

Read Now →

How to Configure Git Username and Email?

Read Now →

Laravel Clear Cache from Route, View, Config Example

Read Now →

How to Send Mail using Gmail SMTP in Laravel?

Read Now →