13 lines
230 B
PHP
13 lines
230 B
PHP
<?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'
|
|
];
|
|
}
|