function() | { | return 'Hello World!'; | } | | You can even respond to more than one URI: | | 'GET /hello, GET /world' => function() | { | return 'Hello World!'; | } | | It's easy to allow URI wildcards using the (:num) or (:any) place-holders: | | 'GET /hello/(:any)' => function($name) | { | return "Welcome, $name."; | } | */ 'GET /' => function() { return Laravel\Str::limit('This is a string of text', 3, '...'); return View::make('home.index'); }, );