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 and laravel 9 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…