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