① 右上角提示
$order = Orders::where('shop_id', $id)
->where('status', 1)
->get()->toArray();
if (!empty($order)) {
admin_toastr('该店铺还有订单未处理,<br>请处理后在进行删除操作!', 'error');
return redirect('/admin/shops');
}
显示如图1, 具体参数列表参考文档
图1 右上角提醒② 上方提示
try {
$result = DB::table('orders')->where('id',$id)->delete();
$result ? admin_success('提示', '删除成功!') : admin_error('错误', '删除错误!');
}catch (\Exception $e) {
admin_error('错误', $e->getMessage());
}
return redirect('/admin/shops');
显示如图2, 具体调用方法参考文档
参考来源:
https://laravel-admin.org/docs/zh/1.x
http://www.cc430.cn/index.php/archives/542
网友评论