idea-php-laravel-plugin
idea-php-laravel-plugin copied to clipboard
IDE can not be prompted correctly
Hello, thank you for providing us with a handy plugin for the development of the laravel project. In the course of the use, I encountered a small problem. I used the match in the route. But the match of the action prompt can not be used normally
Route::group(["prefix"=>"sheet"],function(){
Route::get("list","Admin\SheetController@list");
Route::match(["get","post"],"add","Admin\SheetController@add");
Route::match(["get","post"],"edit/{id}","Admin\SheetController@edit");
Route::get("/delete/{id}","Admin\SheetController@delete");
});
Use Route::get can be prompted normally.
But the use of Route::match can not correct the tips
And Action is there
