Пример #1
0
 /**
  * Remove the specified resource from storage.
  *
  * @param  App\Repositories\ContactRepository $contact_gestion
  * @param  int  $id
  * @return Response
  */
 public function destroy(ContactRepository $contact_gestion, $id)
 {
     $contact_gestion->destroy($id);
     return redirect('contact');
 }