【发布时间】:2020-02-19 08:11:30
【问题描述】:
我来自 Laravel,我尝试验证它并查看每个输入的错误,我已经循环通过 $error->all() 但我需要显示其下每个输入的错误,我使用此代码 $errors->has('password') 来显示输入有错误,但我也需要显示消息。
我得到print_r($errors) 并返回:
Illuminate\Support\ViewErrorBag Object
(
[bags:protected] => Array
(
[default] => Illuminate\Support\MessageBag Object
(
[messages:protected] => Array
(
[firstName] => Array
(
[0] => The first name field is required.
)
[lastName] => Array
(
[0] => The last name field is required.
)
[email] => Array
(
[0] => The email must be a valid email address.
[1] => The email field is required.
)
[password] => Array
(
[0] => The password field is required.
)
[password_confirmation] => Array
(
[0] => The password confirmation field is required.
)
)
[format:protected] => :message
)
)
)
我的问题是我无法访问这些消息?
【问题讨论】:
标签: php laravel laravel-5 laravel-5.8 php-7.2