Is it the order? The wildcard on {event} is catching the 'new'. try this order:
Route::get('/', '[email protected]');
Route::get('new', 'EventsCon[email protected]');
Route::get('{event}', '[email protected]');
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community