This plugin provides database integration for Laravel query builder.
- Schemas, tables, views and columns completion for query and schema builder methods
- Completion for database assertion test methods
- Completion for migrations
- Inspection of unknown database elements
- Table alias support
- Table name resolving from model for eloquent builder methods
- Model relation table name resolving for eloquent builder relation closure methods
- Text linking with database elements for navigation and refactoring
- Configurable table prefix and datasource filtering
See https://www.jetbrains.com/help/phpstorm/connecting-to-a-database.html#connect-to-mysql-database for instructions.
You also need either Laravel Idea plugin (paid) or Laravel IDE helper added to your project and run
php artisan ide-helper:generate
php artisan ide-helper:meta
php artisan ide-helper:models
php artisan ide-helper:eloquent
which will generate some helper files so your IDE could see Eloquent methods.
Laravel Query plugin needs either of those to work otherwise, it cannot understand for which methods to trigger autocompletion.
V5
as a complete rewrite to reduce cognitive load, improve readability and maintainability. It is coming soon. Branch already available for PRs and suggestions.
-
Using IDE built-in plugin system:
Preferences > Plugins > Marketplace > Search for "Laravel Query" > Install Plugin
-
Manually:
Download the latest release and install it manually using Preferences > Plugins > ⚙️ > Install plugin from disk...
Plugin based on the IntelliJ Platform Plugin Template.