28 lines
495 B
PHP
28 lines
495 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models\Documents;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 시스템 프리셋 (tenant_id 없음)
|
||
|
|
*/
|
||
|
|
class DocumentTemplateFieldPreset extends Model
|
||
|
|
{
|
||
|
|
protected $table = 'document_template_field_presets';
|
||
|
|
|
||
|
|
protected $fillable = [
|
||
|
|
'name',
|
||
|
|
'category',
|
||
|
|
'fields',
|
||
|
|
'links',
|
||
|
|
'sort_order',
|
||
|
|
];
|
||
|
|
|
||
|
|
protected $casts = [
|
||
|
|
'fields' => 'array',
|
||
|
|
'links' => 'array',
|
||
|
|
'sort_order' => 'integer',
|
||
|
|
];
|
||
|
|
}
|