Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View minikN's full-sized avatar
😛

Demis Balbach minikN

😛
  • ApproLogic GmbH
  • Darmstadt, Germany
  • 10:43 (UTC +02:00)
View GitHub Profile
public function AccountCenter() {
$user = Auth::user();
return View::make('account.center');
// ->with('user', $user);
return View::share('user', $user);
}