定数をクラスファイルで管理する app/Consts/CommonConst.php を作成した。 <?php namespace App\Consts; class CommonConst { const MESSAGE = 'message'; const RESULT = 'success'; } config/app.php でエイリアスを追加 <?php return = [ // 省略 'aliases' => [ // 省略 'CommonConst' => \App\Consts\CommonConst::class, ] ] app/Http/Controllers/Api/…