Example #1
0
 /**
  * Update the specified resource in storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function update($id, Gestion $PersonneG, EditAdresseForm $EditAdresseForm)
 {
     dd('update : ' . $id);
     $PersonneG->update($id);
     return \Redirect::action('AdresseController@index');
 }