mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
52 lines
1.2 KiB
PHP
52 lines
1.2 KiB
PHP
<?php
|
|
|
|
|
|
|
|
return [
|
|
'nombre' => 'Name',
|
|
'cpFinal' => 'Final Postcode',
|
|
'cpInicial' => 'Initial Postcode',
|
|
'createdAt' => 'Created At',
|
|
'deletedAt' => 'Deleted At',
|
|
'id' => 'ID',
|
|
'importeFijo' => 'Fixed cost',
|
|
'isDeleted' => 'Is Deleted',
|
|
'moduleTitle' => 'Zones',
|
|
'tarifaEnvioId' => 'Shipping Rate',
|
|
'tarifaEnvioZona' => 'Zone and cost',
|
|
'tarifaEnvioZonaList' => 'Zones List',
|
|
'tarifasEnviosZonas' => 'Zones Zonas',
|
|
'tarifasenvioszonas' => 'Zones Zonas',
|
|
'updatedAt' => 'Updated At',
|
|
'userCreatedId' => 'User Created ID',
|
|
'userUpdatedId' => 'User Updated ID',
|
|
'validation' => [
|
|
'nombre' => [
|
|
'max_length' => 'The field cannot exceed 50 characters in length.',
|
|
'required' => 'The field is required.',
|
|
|
|
],
|
|
|
|
'cp_final' => [
|
|
'max_length' => 'The field cannot exceed 10 characters in length.',
|
|
'required' => 'The field is required.',
|
|
|
|
],
|
|
|
|
'cp_inicial' => [
|
|
'max_length' => 'The field cannot exceed 10 characters in length.',
|
|
'required' => 'The field is required.',
|
|
|
|
],
|
|
|
|
'importe_fijo' => [
|
|
'integer' => 'The field must contain an integer.',
|
|
'required' => 'The field is required.',
|
|
|
|
],
|
|
|
|
|
|
],
|
|
|
|
|
|
]; |