Files
nexusphp/app/Models/News.php
2022-02-28 23:20:42 +08:00

24 lines
398 B
PHP

<?php
namespace App\Models;
class News extends NexusModel
{
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');
}
}