Пример #1
0
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  *
  * @return Response
  */
 public function destroy($id)
 {
     Docente::destroy($id);
     Session::flash('flash_message', 'Docente deleted!');
     return redirect('admin/docentes');
 }