下面的代碼是控制器的代碼。這個代碼的工作原理,但值只從頁面中刪除。從表中,值不會被刪除。我可以做什麼從頁面和表中刪除值?如何從表中刪除值?
public function deleteconfirms($id)
{
$employee = CreateEmployee::find($id);
$employee->destroy($id);
Session::flash('flash_notification', array('level' => 'success', 'message' => 'employee deleted successfully'));
return Redirect::action('Admin\[email protected]');
}
你使用softdelete嗎? –