Laravel Environment

$environment = app()->environment(); 
$environment = App::environment(); 
$environment = $app->environment(); 

The environment is local

if ($app->environment('local')){}

The environment is either local OR staging…

if ($app->environment('local', 'staging')){}

Leave a Reply

Your email address will not be published. Required fields are marked *