/**
  * Show the form or adding a new resource.
  *
  * return \Illuminate\Http\Response
  */
 public function new()
 {
     return View::make('projects.new')->withPageTitle(trans('dashboard.projects.new.title') . ' - ' . trans('dashboard.dashboard'))->withGroupId('')->withGroups(Group::Mine()->get());
 }