Example #1
0
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  id
  * @return Response
  */
 public function destroy($id)
 {
     DB::table('matriz_sem')->where('id_matriz', '=', $id)->delete();
     $this->matrizMat->find($id)->delete();
     return Redirect::route('admin.matriz.index');
 }