haciendo formulario de editar tarifa envio

This commit is contained in:
Jaime Jimenez
2023-08-30 13:12:38 +02:00
parent ddaac2f9f1
commit 9a781eb6d6
15 changed files with 705 additions and 29 deletions

View File

@ -0,0 +1,62 @@
<?php
return [
'a domicilio' => 'Home delivery',
'cajas' => 'Boxes',
'createdAt' => 'Created At',
'deletedAt' => 'Deleted At',
'id' => 'ID',
'isDeleted' => 'Is Deleted',
'moduleTitle' => 'Weights and Costs',
'palets' => 'Pallets',
'pesoMax' => 'Max Weight',
'pesoMin' => 'Min Weight',
'precio' => 'Price',
'precioAdicional' => 'Additional Price',
'proveedorId' => 'Provider',
'tarifaEnvioId' => 'Shipping Rate',
'tarifaEnvioPrecio' => 'Weight and Cost',
'tarifaEnvioPrecioList' => 'Weights and Costs List',
'tarifasenviosprecios' => 'Weights and Costs',
'tipoEnvio' => 'Shipping type',
'updatedAt' => 'Updated At',
'userCreatedId' => 'User Created ID',
'userUpdatedId' => 'User Updated ID',
'validation' => [
'peso_max' => [
'decimal' => 'The field must contain a decimal number.',
'required' => 'The field is required.',
],
'peso_min' => [
'decimal' => 'The field must contain a decimal number.',
'required' => 'The field is required.',
],
'precio' => [
'decimal' => 'The field must contain a decimal number.',
'required' => 'The field is required.',
],
'precio_adicional' => [
'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.',
],
],
];