40 lines
1.5 KiB
PHP
40 lines
1.5 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Default Laravel Validation Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The following language lines contain the default error messages used by
|
|
| the Laravel validator class. Some of these rules have multiple versions such
|
|
| as the size rules. Feel free to tweak each of these messages here.
|
|
|
|
|
*/
|
|
'file' => 'The :attribute field must be a file.',
|
|
'image' => 'The :attribute field must be an image.',
|
|
'required' => 'The :attribute field is required.',
|
|
'max' => [
|
|
'array' => 'The :attribute field must not have more than :max items.',
|
|
'file' => 'The :attribute field must not be greater than :max kilobytes.',
|
|
'numeric' => 'The :attribute field must not be greater than :max.',
|
|
'string' => 'The :attribute field must not be greater than :max characters.',
|
|
],
|
|
'mimes' => 'The :attribute must be a file of type: :values.',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Custom Validation Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you may specify custom validation messages for attributes using the
|
|
| convention "attribute.rule" to name the lines. This makes it quick to
|
|
| specify a specific custom language line for a given attribute rule.
|
|
|
|
|
*/
|
|
|
|
'custom' => [],
|
|
|
|
];
|