24 lines
375 B
PHP
24 lines
375 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class News extends Model
|
|
{
|
|
use SoftDeletes;
|
|
protected $table = 'news';
|
|
|
|
protected $fillable = [
|
|
'title',
|
|
'slug',
|
|
'content',
|
|
'image',
|
|
'link',
|
|
'tag',
|
|
'category',
|
|
'author_id'
|
|
];
|
|
}
|