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
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