Para quem não sabe. Essas formas de código são equivalentes.
//Facade
Route::get('/', function() {
return View::make('hello');
});
//Function
app('router')->get('/', function() {
return app('view')->make('hello');
});
//Array
$app['router ']->get('/', function() use ($app) {
return $app['view']->make('hello');
});