mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
54 lines
1.2 KiB
PHP
Executable File
54 lines
1.2 KiB
PHP
Executable File
<?php
|
|
|
|
|
|
|
|
return [
|
|
'apellidos' => 'Apellidos',
|
|
'cargo' => 'Cargo',
|
|
'cliente' => 'Cliente ID',
|
|
'cliente-contactos' => 'Contactos de cliente',
|
|
'clienteId' => 'Cliente ID',
|
|
'contactoDeCliente' => 'Contacto de cliente',
|
|
'contactoDeClienteList' => 'Contacto de cliente List',
|
|
'contactosDeCliente' => 'Contactos de cliente',
|
|
'createdAt' => 'Created At',
|
|
'deletedAt' => 'Deleted At',
|
|
'email' => 'Email',
|
|
'id' => 'ID',
|
|
'isDeleted' => 'Is Deleted',
|
|
'moduleTitle' => 'Cliente Contactos',
|
|
'nombre' => 'Nombre',
|
|
'telefono' => 'Telefono',
|
|
'updatedAt' => 'Updated At',
|
|
'validation' => [
|
|
'apellidos' => [
|
|
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
|
|
|
],
|
|
|
|
'cargo' => [
|
|
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
|
|
|
],
|
|
|
|
'nombre' => [
|
|
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
|
|
|
],
|
|
|
|
'telefono' => [
|
|
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
|
|
|
],
|
|
|
|
'email' => [
|
|
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
|
'valid_email' => 'The {field} field must contain a valid email address.',
|
|
|
|
],
|
|
|
|
|
|
],
|
|
|
|
|
|
]; |