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
Hey, @HansSchouten
we use livewire and some custome routes with this route . whitout this route i have json error in livewire . my main problem is when i use this route pagebuilder route must be 4 character example /aaa and if i add page with bigger than this like /aaaa page return 404
The text was updated successfully, but these errors were encountered:
I just did some trick to work around this as bellow.
Route::any('/{uri}', [ 'uses' => 'WebsiteController@uri', 'as' => 'page', ])->where('uri', '^((?!<1-route>|<12-route>|<3-route>|....|<n-route>).)*$');
Hey, @HansSchouten
we use livewire and some custome routes with this route . whitout this route i have json error in livewire . my main problem is when i use this route pagebuilder route must be 4 character example /aaa and if i add page with bigger than this like /aaaa page return 404
The text was updated successfully, but these errors were encountered: