mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
87 lines
1.9 KiB
PHP
Executable File
87 lines
1.9 KiB
PHP
Executable File
<?php
|
|
|
|
|
|
|
|
return [
|
|
'cif' => 'CIF',
|
|
'ciudad' => 'City',
|
|
'cp' => 'Postal code',
|
|
'createdAt' => 'Created At',
|
|
'deletedAt' => 'Deleted At',
|
|
'direccion' => 'Address',
|
|
'email' => 'Email',
|
|
'id' => 'ID',
|
|
'isDeleted' => 'Is Deleted',
|
|
'moduleTitle' => 'Suppliers',
|
|
'nombre' => 'Name',
|
|
'paisId' => 'Country',
|
|
'personaContacto' => 'Contact Person',
|
|
'propiedades' => 'Properties',
|
|
'proveedor' => 'Supplier',
|
|
'proveedorList' => 'Suppliers List',
|
|
'proveedores' => 'Suppliers',
|
|
'provinciaId' => 'Region',
|
|
'razonSocial' => 'Business Name',
|
|
'telefono' => 'Phone',
|
|
'tipoId' => 'Type',
|
|
'updatedAt' => 'Updated At',
|
|
'cajas' => 'boxes',
|
|
'palets' => 'pallets',
|
|
'validation' => [
|
|
'cif' => [
|
|
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
|
|
|
],
|
|
|
|
'ciudad' => [
|
|
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
|
|
|
],
|
|
|
|
'cp' => [
|
|
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
|
|
|
],
|
|
|
|
'direccion' => [
|
|
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
|
|
|
],
|
|
|
|
'persona_contacto' => [
|
|
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
|
|
|
],
|
|
|
|
'razon_social' => [
|
|
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
|
|
|
],
|
|
|
|
'telefono' => [
|
|
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
|
|
|
],
|
|
|
|
'email' => [
|
|
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
|
'valid_email' => 'The {field} field must contain a valid email address.',
|
|
|
|
],
|
|
|
|
'nombre' => [
|
|
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
|
'required' => 'The {field} field is required.',
|
|
|
|
],
|
|
|
|
'tipo' => [
|
|
'required' => 'The {field} field is required.',
|
|
|
|
],
|
|
|
|
|
|
],
|
|
|
|
|
|
]; |