Ekapp/skolehjem/app/News.php

13 lines
230 B
PHP
Raw Permalink Normal View History

2020-08-06 10:21:19 +00:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class News extends Model
{
protected $fillable = [
'name', 'subname', 'news_expiration_date', 'content', 'resource_id', 'arrangement_id', 'type'
2020-08-06 10:21:19 +00:00
];
}