mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
18 lines
393 B
PHP
Executable File
18 lines
393 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models\Soporte;
|
|
|
|
|
|
class TicketRespuestaModel extends \App\Models\BaseModel
|
|
{
|
|
|
|
protected $table = 'tickets_respuestas';
|
|
protected $primaryKey = 'id';
|
|
protected $allowedFields = ['ticket_id', 'usuario_id', 'mensaje' ,'createt_at', 'updated_at'];
|
|
|
|
protected $useTimestamps = true;
|
|
|
|
protected $returnType = "App\Entities\Soporte\TicketRespuestaEntity";
|
|
|
|
}
|