06.10.2016 Views

laravel-5

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Intermediate Task List 117<br />

1 /**<br />

2 * Destroy the given task.<br />

3 *<br />

4 * @param Request $request<br />

5 * @param Task $task<br />

6 * @return Response<br />

7 */<br />

8 public function destroy(Request $request, Task $task)<br />

9 {<br />

10 $this->authorize('destroy', $task);<br />

11<br />

12 $task->delete();<br />

13<br />

14 return redirect('/tasks');<br />

15 }

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!