simedkom/app/Models/News.php
myuqinurrohman 298092be84 feat: news
2025-02-27 13:25:13 +07:00

22 lines
308 B
PHP

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