'int', 'entity_id' => 'int', ]; protected $fillable = [ 'post_id', 'entity_id', ]; public function post() { return $this->belongsTo(Post::class); } public function entity() { return $this->belongsTo(Entity::class); } }