Haehnchen / idea-php-laravel-plugin

Laravel Framework Plugin for PhpStorm / IntelliJ IDEA
MIT License
572 stars 108 forks source link

Plugin ignores as() parameter for routing groups #284

Open eness opened 2 years ago

eness commented 2 years ago

This plugin just ignores named routes that you prefix with Route::as('xxx')->group(... method. Instead you need to use Route::group(['as' => 'xxx'], function() { ... to get it work.

Hope to see someone to send a bugfix.

Just for your interest who come across that issue.