Example #1
0
 /**
  * Store a newly created resource in storage.
  *
  * @return Response
  */
 public function store(Request $request)
 {
     $this->validate($request, $this->rules);
     $input = Input::all();
     Project::create($input);
     return Redirect::route('projects.index')->with('message', 'Project created');
 }