1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

laravelの定数定義

Posted at

https://qiita.com/Hiraku/items/bb0cb665d830f7cd37ff
constを使って定義することもあるみたいですが、今回の開発はdefineが使われていたのでそちらに合わせました。

config/const.php
define('OFF', 0);
define('ON', 1);

こんな感じに定義。

これでどこからでもOFFという定数で0が呼び出せるように。
何らかのカラムを0をオフ、1をオンで管理したいときなどに見やすくて便利です。

1
0
0

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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?