falta borrar direcciones cliente

This commit is contained in:
2023-12-18 00:10:47 +01:00
parent d9083aac2d
commit c435ba5a9f
9 changed files with 257 additions and 182 deletions

View File

@ -1,18 +0,0 @@
<?php
namespace App\Entities\Configuracion;
use CodeIgniter\Entity;
class ComunidadesAutonomasEntity extends \CodeIgniter\Entity\Entity
{
protected $attributes = [
"id" => null,
"nombre" => null,
"pais_id" => null,
"created_at" => null,
"updated_at" => null,
];
protected $casts = [
"pais_id" => "int",
];
}