コード例 #1
0
 public function postDelete($id)
 {
     $child = Child::findOrFail($id);
     $child->delete();
     return redirect()->action('ChildrenController@getIndex')->with('flash_message', 'Ребенок удален');
 }