Solve your laravel problems.
How to write action that is called after destroy in model:
public function destroy($id) { Announcement::destroy($id); return redirect("announcements/my")->with('success', "Success!"); }