<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class TopicKeyword extends Model
{
    protected $table = 'topic_keywords';

    protected $fillable = ['id', 'topic_id', 'keyword_id', 'created_at', 'updated_at'];

    public function keyword() {
        return $this->belongsTo(Keyword::class, 'keyword_id', 'id')->where('is_deleted', false)->select('id', 'name');
    }
}
