trabajando en formularios/vista paises

This commit is contained in:
Jaime Jiménez
2023-05-05 15:05:24 +02:00
parent f0772cf1a6
commit b7b4821f8a
14 changed files with 573 additions and 69 deletions

View File

@ -0,0 +1,22 @@
<?php
namespace App\Entities\Configuracion;
use CodeIgniter\Entity;
class Pais extends \CodeIgniter\Entity\Entity
{
protected $attributes = [
"id" => null,
"nombre" => null,
"code" => null,
"code3" => null,
"moneda" => null,
"url_erp" => null,
"user_erp" => null,
"key_erp" => null,
"show_erp" => false,
];
protected $casts = [
"show_erp" => "boolean",
];
}