LoginSignup
3
2

More than 1 year has passed since last update.

Laravel 環境にによる分岐処理

Posted at

概要

  • Laravelにて.envのAPP_ENVの値いよって処理を分岐させたい時の条件部分を簡単にまとめる

紹介

ローカル開発環境かどうかの判定

if (app()->isLocal()) {
    // ローカル開発環境でのみ実行したい処理
}

本番環境かどうかの判定

if (app()->isProduction()) {
    // 本番環境でのみ実行したい処理
}
3
2
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2