Ejemplo n.º 1
0
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function destroy($id)
 {
     $tache = Tache::findOrFail($id);
     $sprint_id = $tache->sprint_id;
     DB::table('tache')->delete($id);
     Session::flash('success2', "You Task was deleted with success !");
     return redirect(route('taches.taches.show', $sprint_id));
 }