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