禁用 crud 中的字段

Leo*_*oso 1 backpack-for-laravel

我需要更新记录,但我想将某些字段显示为禁用编辑。我不想让用户编辑某个字段,但我想显示它们

B A*_*B A 5

If I understand your problem correctly then you may want to try something like this.

CRUD::addField([
            'name' => 'nameOfYourField',
            'label' => 'nameOFLabel',
            'type' => 'number',
            'attributes' => [
               'readonly' => 'readonly',
             ],
        ]);
Run Code Online (Sandbox Code Playgroud)

You can also use 'disabled' => 'disabled', but it depends what you want exatly to achieve with the values. Check it out here