falta botones exportar, etc

This commit is contained in:
Jaime Jimenez
2023-09-04 09:05:48 +02:00
parent 56b233af1f
commit 289d89851b
11 changed files with 112 additions and 76 deletions

View File

@ -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.',

View File

@ -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.',