Answers for "laravel check environment variables in config"

PHP
2

laravel check environment

if (App::environment('local')) {
    // The environment is local
}

if (App::environment(['local', 'staging'])) {
    // The environment is either local OR staging...
}

// or using the 'app' helper
if (app()->environment('local')) {
    // The environment is local
}

if (app()->environment(['local', 'staging'])) {
    // The environment is either local OR staging...
}

// using config
if(config('app.env' == 'local')){
	// The environment is local
}

if(in_array(config('app.env'), ['local', 'staging'])){
	// The environment is either local OR staging...
}
Posted by: Guest on August-30-2021
0

laravel set env to production

APP_ENV=production
APP_DEBUG=false
Posted by: Guest on October-10-2021

Code answers related to "laravel check environment variables in config"

Browse Popular Code Answers by Language