Today, We want to share with you PHP Laravel Get Environment Variables Example Tutorial.In this post we will show you Get environment value in controller, hear for Passing ENV variable to Controller we will give you demo and example for implement.In this post, we will learn about Gets the value of an environment variable in Laravel with an example.
PHP Laravel Get Environment Variables Example Tutorial
There are the Following The simple About PHP Laravel Get Environment Variables Example Tutorial Full Information With Example and source code.
As I will cover this Post with live Working example to develop get Environment Variables in Laravel 5.7, so the some major files and Directory structures for this example is following below.
in Laravel Controlller
public static function mail($param) { //$_ENV['yourkeyhere']; $mailgunsecret = env('MAILGUN_SECRET'); $mailguurl = env('MAILGUN_DOMAIN'); }
in Laravel Blade files
@if (env('APP_ENV')!='Production') Welcome To Pakainfo.com Enviroment Test @endif
must run this commands
php artisan config:clear php artisan cache:clear composer dump-autoload php artisan view:clear php artisan route:clear
Example : Accessing Laravel .env variables in blade
APP_ENV=local APP_KEY=//// APP_DEBUG=true APP_LOG_LEVEL=debug APP_URL=http://localhost
MAIL_DRIVER= mailgun MAILGUN_DOMAIN = sandbox........mailgun.org MAIL_HOST = smtp.mailgun.org MAIL_PORT =587 MAIL_USERNAME = [email protected] MAIL_PASSWORD = JapakaingoKrunal008 MAILGUN_SECRET = key-........... MAIL_FROM = [email protected] MAIL_ENCRYPTION=tls
Get environment value
{{ env('APP_ENV') }} // returns 'local' {{ env('APP_URL') }} // returns 'http://localhost' {{ env('MAILGUN_DOMAIN') }} // returns 'sandbox........mailgun.org'
Angular 6 CRUD Operations Application Tutorials
Read :
Summary
You can also read about AngularJS, ASP.NET, VueJs, PHP.
I hope you get an idea about PHP Laravel Get Environment Variables Example Tutorial.
I would like to have feedback on my Pakainfo.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.