Añadido clientes by Ozar y primeros fixes

This commit is contained in:
imnavajas
2023-07-10 10:05:06 +02:00
parent f67ba91b79
commit 42a20b93b0
25 changed files with 2737 additions and 52 deletions

View File

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