Share this:

Hello dev, today we are going to learn how to get all .env variables in laravel. This tutorial will cover on getting all env variables in laravel application.

This detailed guide will cover laravel get all env variables. This post will give you a simple example of how to get all env variables in laravel. This post will give you a simple example of get all environment variables laravel. This article will give you a simple example of laravel get all environment variables example.

You can use these tips with laravel 6, laravel 7, laravel 8 and laravel 9 versions.

If you want to access all env variables then laravel provides $_ENV variable to get all environment variables. so let’s see the simple example the below:

Also Read: Laravel Carbon Time Format AM PM Example Code

Example on Get All env Variables in Laravel

Example:

app/Http/Controllers/DemoController.php

<?php
  
namespace App\Http\Controllers;
  
use Illuminate\Http\Request;
  
class DemoController extends Controller
{
    /**
     * Write code on Method
     *
     * @return response()
     */
    public function index(Request $request)
    {
        /* Getting All Env Variables */
        $allEnvVar = $_ENV;
  
        /* Getting All Env Variables */
        $dbName = $_ENV['DB_DATABASE'];
  
        dd($allEnvVar, $dbName);
    }
}

Conclusion

Today, We had learn How to Get All env Variables in Laravel?. Hope this tutorial helped you with learning Laravel 9. If you have any question you can ask us at comment section below. If you like the tutorial please subscribe our YouTube Channel and follow us on social network Facebook and Instagram.

Also Read: Laravel Pagination Tutorial

Share this:

Categorized in: