Open2

Laravel Tips

白湯白湯

barryvdh/laravel-ide-helper

php artisan ide-helper:models --nowrite

これ実行するとルートパスに _ide_helper_models.php が出来上がる。
こいつのおかげで補完が効くようになる。

白湯白湯

nunomaduro/larastan

Access to an undefined property が出てくるときは、上記のライブラリで生成された PHP ファイルを読み込ませるとよい。

includes:
  - ./vendor/nunomaduro/larastan/extension.neon

parameters:
  paths:
    - _ide_helper_models.php
    - app
  # the level 9 is the highest level
  level: 5