分类 Laravel-admin 下的文章

我的个人博客:逐步前行STEP

我把一个字段设默认值为0 需要审核操作 通过设为1 不通过设为2

$states = [
                'on'  => ['value' => 1, 'text' => '通过', 'color' => 'success'],
                'off' => ['value' => 2, 'text' => '不通过', 'color' => 'danger'],
            ];

使用switch控件,不改变状态时显示为通过,但实际提交状态值为0

为了达到默认执行审核通过的效果,需在模型的保存回调中对状态值0进行修改:

public static function boot()
    {
        parent::boot();
        static::saving(function ($model) {
            //修改状态值
            if($model->shelf_status == 0){
                $model->shelf_status = 1;
            }
        });
    }

这样不操作switch,默认提交的状态值为1