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.