'int', 'categorie_id' => 'int' ]; protected $fillable = [ 'billet_id', 'categorie_id' ]; public function billet() { return $this->belongsTo(Billet::class); } public function category() { return $this->belongsTo(Category::class, 'categorie_id'); } }