z-song / laravel-admin

Build a full-featured administrative interface in ten minutes
https://laravel-admin.org
MIT License
11.13k stars 2.81k forks source link

表单验证laravel7.x版本失效没有任何提示 #4917

Closed Endlife93 closed 3 years ago

Endlife93 commented 4 years ago

表单验证没有任何提示信息:为空字段插入和更新是不会产生,但是页面没有提示信息 。 $form->text('name', __('Name'))->rules('required'); 我试过唯一性校验 数据库不会报 唯一索引错误 但是还是没有任何提示 我手动增加提示也不成功 $form->text('username') ->creationRules(['required', "unique:user_table"]) ->updateRules(['required', "unique:user_table,username,{{id}}"]);

stale[bot] commented 3 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.