“Laravel Check Environment HLPER” Réponses codées

Obtenez URL de l'application Env Laravel

env('APP_URL')
Witness

Laravel Check Environment HLPER

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

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

Laravel App_env Config

if (\Illuminate\Support\Facades\App::environment('production')) {
    // The environment is production
}
Johs

Réponses similaires à “Laravel Check Environment HLPER”

Questions similaires à “Laravel Check Environment HLPER”

Plus de réponses similaires à “Laravel Check Environment HLPER” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code