simedkom/app/Models/MediaMonitoring.php
2025-03-02 21:37:47 +07:00

35 lines
591 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class MediaMonitoring extends Model
{
protected $table = 'media_monitorings';
protected $fillable = [
'code',
'media_name',
'theme',
'title',
'channel',
'writter',
'link',
'news_page',
'quote',
'content',
'influencer',
'keyword',
'image',
'release_date',
'enhancer_id',
];
public function enhancer()
{
return $this->belongsTo(User::class, 'enhancer_id', 'id');
}
}