simedkom/app/Models/ContentRecap.php
2025-02-28 09:06:03 +07:00

25 lines
420 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ContentRecap extends Model
{
protected $table = 'content_recaps';
protected $fillable = [
'title',
'posted_date',
'channel',
'link',
'classification',
'enhancer_id',
];
public function enhancer()
{
return $this->belongsTo(User::class, 'enhancer_id', 'id');
}
}