funcionando la vista papel generico. investiganto ruta del boton añadir. falta poder quitar botones primera col

This commit is contained in:
Jaime Jimenez
2023-05-22 20:47:18 +02:00
parent 0ddd37b0c5
commit 3774573829
8 changed files with 720 additions and 0 deletions

View File

@ -0,0 +1,22 @@
<?php
namespace App\Entities\Configuracion;
use CodeIgniter\Entity;
class Imposicion extends \CodeIgniter\Entity\Entity
{
protected $attributes = [
"id" => null,
"ancho" => null,
"alto" => null,
"unidades" => null,
"orientacion" => null,
"maquina" => null,
"etiqueta" => null,
];
protected $casts = [
"ancho" => "int",
"alto" => "int",
"unidades" => "?int",
];
}