I am trying to send all undefined routes in a specific controller like this:
Route::get('/{slug:[A-Za-z0-9:/]+}', ['uses' => '\Site\Http\Controllers\AppController@index'])
It works in Lumen 5.1 but no chance in Laravel 5.2.
How can I setup such general match routes?