mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
falta botones exportar, etc
This commit is contained in:
@ -15,6 +15,7 @@ return [
|
||||
'pesoMin' => 'Min Weight',
|
||||
'precio' => 'Price',
|
||||
'precioAdicional' => 'Additional Price',
|
||||
'margen' => 'Margin',
|
||||
'proveedorId' => 'Provider',
|
||||
'tarifaEnvioId' => 'Shipping Rate',
|
||||
'tarifaEnvioPrecio' => 'Weight and Cost',
|
||||
@ -52,6 +53,12 @@ return [
|
||||
|
||||
],
|
||||
|
||||
'margen' => [
|
||||
'decimal' => 'The field must contain a decimal number.',
|
||||
'required' => 'The field is required.',
|
||||
|
||||
],
|
||||
|
||||
'tipo_envio' => [
|
||||
'in_list' => 'The field must be one of the are included in the list.',
|
||||
'required' => 'The field is required.',
|
||||
|
||||
@ -3,6 +3,7 @@
|
||||
|
||||
|
||||
return [
|
||||
'nombre' => 'Name',
|
||||
'cpFinal' => 'Final Postcode',
|
||||
'cpInicial' => 'Initial Postcode',
|
||||
'createdAt' => 'Created At',
|
||||
@ -20,6 +21,12 @@ return [
|
||||
'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.',
|
||||
|
||||
@ -3,7 +3,6 @@
|
||||
|
||||
|
||||
return [
|
||||
'aDomicilio' => 'A domicilio',
|
||||
'cajas' => 'Cajas',
|
||||
'createdAt' => 'Created At',
|
||||
'deletedAt' => 'Deleted At',
|
||||
@ -15,6 +14,7 @@ return [
|
||||
'pesoMin' => 'Peso Min',
|
||||
'precio' => 'Precio peso mín.',
|
||||
'precioAdicional' => 'Precio Kg Adicional',
|
||||
'margen' => 'Margen',
|
||||
'proveedorId' => 'Proveedor',
|
||||
'tarifaEnvioId' => 'Tarifa Envío',
|
||||
'tarifaEnvioPrecio' => 'Peso y Precio',
|
||||
@ -52,6 +52,12 @@ return [
|
||||
|
||||
],
|
||||
|
||||
'margen' => [
|
||||
'decimal' => 'El campo debe contener un número decimal.',
|
||||
'required' => 'El campo es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
'tipo_envio' => [
|
||||
'in_list' => 'El campo debe ser uno de la lista.',
|
||||
'required' => 'El campo es obligatorio.',
|
||||
|
||||
@ -3,6 +3,7 @@
|
||||
|
||||
|
||||
return [
|
||||
'nombre' => 'Nombre',
|
||||
'cpFinal' => 'CP Final',
|
||||
'cpInicial' => 'CP Inicial',
|
||||
'createdAt' => 'Created At',
|
||||
@ -20,6 +21,12 @@ return [
|
||||
'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.',
|
||||
|
||||
Reference in New Issue
Block a user