Skip to content

Instantly share code, notes, and snippets.

@bkozora
Created January 5, 2015 15:42
Show Gist options
  • Save bkozora/abc3fea2b5110486c259 to your computer and use it in GitHub Desktop.
Save bkozora/abc3fea2b5110486c259 to your computer and use it in GitHub Desktop.
Laravel Basic Controller
class UserController extends BaseController {
/**
* Show the profile for the given user.
*/
public function showProfile($id)
{
$user = User::find($id);
return View::make('user.profile', array('user' => $user));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment