/**
  * Returns a form view that allows you to create a Project List
  *
  * @return \Illuminate\View\View
  */
 public function create()
 {
     //get list of type of projects
     $projects = ProjectType::lists('name', 'id');
     //load a view to create a new project
     return view('projects.create', compact('projects'));
 }