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