In this tutorial, I will give you information on how to get the .env variable in the controller or file. Many times we need to require an environment variable in the controller and blade file like if you are creating PayPal integration then you have stored the app id and secret key in the env file or any other details about hosting, web hosting, credit card, and payment details. But if you haven't any idea how to get it in the controller or blade file.
So, let's check how to get those variable data from the .env file.
Syntax:
Example:
@if(env('APP_ENV') == 'local')
Match
@endif
if(env('APP_ENV') == 'local')
{
echo 'Match';
}
So, it is very simple to get variable data from a .env file like this.
In This small tutorial, I will explain to you how to validate a 10-digit mobile number using regular expressions in...
Jun-15-2020
Hello, laravel web developers! In this article, we'll see how to create a zip archive file in laravel 11. You can cr...
Jul-17-2024
In this tutorial, I will show you how to check RAM and CPU usage in laravel in ubuntu OS. Many times we requir...
Jul-29-2020
In this article, we will see how to create a dynamic pie chart in laravel 9. Pie charts are used to repre...
Mar-20-2022