*/ use HasFactory; protected $fillable = ['name']; public function users(): BelongsToMany { return $this->belongsToMany(User::class); } }