summaryrefslogtreecommitdiff
path: root/src/Models/News/News.php
blob: ae67752bd6e61c6bd301fb4aee85931ed1325230 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
declare(strict_types=1);

namespace Engelsystem\Models\News;

use Engelsystem\Models\User\UsesUserModel;
use Illuminate\Database\Eloquent\Model;

/**
 * This class represents a news item.
 */
class News extends Model
{
    use UsesUserModel;

    protected $casts = [
        'is_meeting' => 'boolean',
    ];

    protected $attributes = [
        'is_meeting' => false,
    ];

    protected $fillable = [
        'title',
        'text',
        'is_meeting',
        'user_id',
    ];
}