/**
  * Store a newly created resource in storage.
  *
  * @return Response
  */
 public function store()
 {
     $input = Input::all();
     Services::create($input);
     return Redirect::route('services.index')->with('message', 'Service created');
 }