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