mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
52 lines
1.2 KiB
PHP
Executable File
52 lines
1.2 KiB
PHP
Executable File
<?php
|
|
|
|
|
|
|
|
return [
|
|
'nombre' => 'Nombre',
|
|
'cpFinal' => 'CP Final',
|
|
'cpInicial' => 'CP Inicial',
|
|
'createdAt' => 'Created At',
|
|
'deletedAt' => 'Deleted At',
|
|
'id' => 'ID',
|
|
'importeFijo' => 'Importe Fijo',
|
|
'isDeleted' => 'Is Deleted',
|
|
'moduleTitle' => 'Zonas',
|
|
'tarifaEnvioId' => 'Tarifa Envío',
|
|
'tarifaEnvioZona' => 'Zona',
|
|
'tarifaEnvioZonaList' => 'Lista de Zonas',
|
|
'tarifasEnviosZonas' => 'Zonas',
|
|
'tarifasenvioszonas' => 'Zonas',
|
|
'updatedAt' => 'Updated At',
|
|
'userCreatedId' => 'User Created ID',
|
|
'userUpdatedId' => 'User Updated ID',
|
|
'validation' => [
|
|
'nombre' => [
|
|
'max_length' => 'El campo no puede exceder 50 caracteres en longitud.',
|
|
'required' => 'El campo es obligatorio.',
|
|
|
|
],
|
|
|
|
'cp_final' => [
|
|
'max_length' => 'El campo no puede exceder 10 caracteres en longitud.',
|
|
'required' => 'El campo es obligatorio.',
|
|
|
|
],
|
|
|
|
'cp_inicial' => [
|
|
'max_length' => 'El campo no puede exceder 10 caracteres en longitud.',
|
|
'required' => 'El campo es obligatorio.',
|
|
|
|
],
|
|
|
|
'importe_fijo' => [
|
|
'integer' => 'El campo debe contener un número.',
|
|
'required' => 'El campo es obligatorio.',
|
|
|
|
],
|
|
|
|
|
|
],
|
|
|
|
|
|
]; |