2
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 1 year has passed since last update.

Laravel とPHP TipsAdvent Calendar 2023

Day 11

PhpStormにて、Eloquentのクエリ補完を効きやすく

Posted at

概要

PhpStormにてEloquentのクエリ補完を効きやすくする方法はいくつかあります

  • Laravel ideaプラグインを利用する(有料)
  • query()メソッドからクエリ処理を記述する

私はlaravel ideaを使用していますが、今回プラグインをoffにして後者を紹介します。

内容

Storeモデルからwhereメソッドを生やそうとした時に、エディタで補完が効いてくれません。

AIでの補完がうっすら効いてしまっていますがスルー

スクリーンショット 2023-12-07 16.05.22.png

queryメソッドの補完は効いてくれます、まずqueryメソッドを記述して、そこからwhereメソッドを記述してみましょう
スクリーンショット 2023-12-07 16.07.06.png

スクリーンショット 2023-12-07 16.08.20.png

補完が効いてくれました!

laravel ideaを使用しない場合はquery()メソッドから記述を始めて補完を効かせて生産性を上げましょう!

2
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
2
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?