26 lines
465 B
PHP
26 lines
465 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ChecklistFineAnnoItem extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'checklist_fine_anno_items';
|
|
|
|
protected $fillable = [
|
|
'label',
|
|
'action_url',
|
|
'sort_order',
|
|
'is_active',
|
|
];
|
|
|
|
protected $casts = [
|
|
'is_active' => 'boolean',
|
|
'sort_order' => 'integer',
|
|
];
|
|
}
|