env laravel code example
Example 1: laravel get env variable
dd(env('APP_NAME'));
Example 2: laravel APP_ENV config
if (\Illuminate\Support\Facades\App::environment('production')) {
// The environment is production
}
Example 3: laravel check environment hlper
if (App::environment('local')) {
// The environment is local
}
if (App::environment(['local', 'staging'])) {
// The environment is either local OR staging...
}
Example 4: laravel use config
use Illuminate\Support\Facades\Config;