trabajando en la lista de tickets

This commit is contained in:
2025-02-15 17:54:49 +01:00
parent a616ec7ba7
commit 4a8aaf906c
15 changed files with 473 additions and 64 deletions

View File

@ -0,0 +1,11 @@
<?php
namespace App\Models\Soporte;
class ticketFileModel extends \App\Models\BaseModel
{
protected $table = 'tickets_adjuntos';
protected $primaryKey = 'id';
protected $allowedFields = ['ticket_id','respuesta_id', 'nombre', 'hash', 'path', 'created_at', 'updated_at'];
protected $useTimestamps = true;
}