getting env variable in laravel code example
Example 1: laravel get env variable
dd(env('APP_NAME'));
Example 2: laravel check environment hlper
if (App::environment('local')) {
// The environment is local
}
if (App::environment(['local', 'staging'])) {
// The environment is either local OR staging...
}