You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 12, 2022. It is now read-only.
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.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
This plugin just ignores named routes that you prefix with
Route::as('xxx')->group(...
method. Instead you need to useRoute::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.
The text was updated successfully, but these errors were encountered: