29 lines
541 B
PHP
29 lines
541 B
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class SupportUpdateEntry extends Model
|
|
{
|
|
protected $fillable = [
|
|
'release_key',
|
|
'category',
|
|
'audience',
|
|
'title',
|
|
'summary',
|
|
'impact',
|
|
'page_label',
|
|
'page_class',
|
|
'related_path',
|
|
'related_commit',
|
|
'is_visible',
|
|
'is_highlighted',
|
|
'recorded_at',
|
|
];
|
|
|
|
protected $casts = [
|
|
'is_visible' => 'boolean',
|
|
'is_highlighted' => 'boolean',
|
|
];
|
|
}
|