mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
44 lines
919 B
PHP
44 lines
919 B
PHP
<?php
|
|
|
|
|
|
|
|
return [
|
|
'code' => 'Code',
|
|
'createdAt' => 'Created At',
|
|
'id' => 'ID',
|
|
'moduleTitle' => 'Provincias',
|
|
'nombre' => 'Nombre',
|
|
'paisId' => 'Pais ID',
|
|
'provincia' => 'Provincia',
|
|
'provinciaList' => 'Provincia List',
|
|
'provincias' => 'Provincias',
|
|
'updatedAt' => 'Updated At',
|
|
'validation' => [
|
|
'id' => [
|
|
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
|
|
|
],
|
|
|
|
'pais_id' => [
|
|
'integer' => 'The {field} field must contain an integer.',
|
|
|
|
],
|
|
|
|
'nombre' => [
|
|
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
|
'required' => 'The {field} field is required.',
|
|
|
|
],
|
|
|
|
'code' => [
|
|
'is_unique' => 'The {field} field must contain a unique value',
|
|
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
|
'required' => 'The {field} field is required.',
|
|
|
|
],
|
|
|
|
|
|
],
|
|
|
|
|
|
]; |