idea-php-laravel-plugin icon indicating copy to clipboard operation
idea-php-laravel-plugin copied to clipboard

IDE can not be prompted correctly

Open qiqizjl opened this issue 8 years ago • 0 comments

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");
});

image image Use Route::get can be prompted normally. But the use of Route::match can not correct the tips And Action is there image

qiqizjl avatar Sep 18 '17 13:09 qiqizjl