share-lt/app/Models/Entry.php

19 lines
282 B
PHP
Raw Normal View History

2026-01-02 13:58:06 +00:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Entry extends Model
{
protected $fillable = [
'title',
'slug',
'description',
'is_published',
'is_featured',
'published_at',
'content',
];
}