mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Añadido clientes by Ozar y primeros fixes
This commit is contained in:
15
ci4/app/Entities/Configuracion/FormasPagoEntity.php
Normal file
15
ci4/app/Entities/Configuracion/FormasPagoEntity.php
Normal 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 = [];
|
||||
}
|
||||
Reference in New Issue
Block a user