19 lines
282 B
PHP
19 lines
282 B
PHP
|
|
<?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',
|
||
|
|
];
|
||
|
|
}
|