Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save byjamaljama/6145650 to your computer and use it in GitHub Desktop.
Save byjamaljama/6145650 to your computer and use it in GitHub Desktop.
<?php
class UserController extends \BaseController {
public function getLogin() {
return 'I\'m in!';
}
}
<?php
Route::controller(
'users',
'UserController',
[
'getLogin' => 'user_login',
]
);
Route::get('/', function () {
return Redirect::route('user_login');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment