*/ use HasFactory; protected $fillable = [ 'BIL_DATE', 'BIL_TITRE', 'BIL_CONTENU', 'created_at', 'updated_at', ]; public function commentaires() { return $this->hasMany(Commentaire::class); } }