added initial entries model

This commit is contained in:
jon brookes 2026-01-02 13:58:06 +00:00
parent 11f1dc6895
commit a0a1c08ece
19 changed files with 487 additions and 6 deletions

18
app/Models/Entry.php Normal file
View file

@ -0,0 +1,18 @@
<?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',
];
}