/** * Remove the specified page from storage. * * @param int $id * * @return \Illuminate\Http\Response */ public function destroy($id) { Page::destroy($id); return redirect()->route('admin.page.index'); }
private function _deletePage($id) { Page::destroy($id); }