Eliminado controlador redundante de formas de pago

This commit is contained in:
imnavajas
2023-10-31 22:42:13 +01:00
parent 3c723c59d9
commit a54bbacf35
6 changed files with 0 additions and 459 deletions

View File

@ -1,15 +0,0 @@
<?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 = [];
}