Files
nexusphp/app/Models/News.php
2025-10-12 04:13:18 +07:00

28 lines
476 B
PHP

<?php
namespace App\Models;
use App\Models\Traits\NexusActivityLogTrait;
class News extends NexusModel
{
use NexusActivityLogTrait;
protected $table = 'news';
protected $fillable = [
'userid', 'added', 'title', 'body', 'notify',
];
protected $casts = [
'added' => 'datetime',
];
public function user(): \Illuminate\Database\Eloquent\Relations\BelongsTo
{
return $this->belongsTo(User::class, 'userid');
}
}