mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
16 lines
341 B
PHP
Executable File
16 lines
341 B
PHP
Executable File
<?php
|
|
namespace App\Models;
|
|
|
|
class TemplateModel extends BaseModel
|
|
{
|
|
protected $table = 'auth_template';
|
|
protected $primaryKey = 'id_template';
|
|
protected $allowedFields = [
|
|
'name',
|
|
'subject',
|
|
'body',
|
|
'type'
|
|
];
|
|
protected $useTimestamps = true;
|
|
protected $updatedField = 'updated_at';
|
|
} |