* @author James Brooks * @author Graham Campbell */ class CurrentUserComposer { /** * Bind data to the view. * * @param \Illuminate\Contracts\View\View $view * * @return void */ public function compose(View $view) { $view->withCurrentUser(Auth::user()); } }