*/ use HasFactory; const SANAA = 'sanaa'; const ADEN = 'aden'; protected $fillable = [ 'name', 'label', ]; /** * Get all supported cities */ public static function supportedCities(): array { return [ self::SANAA, self::ADEN, ]; } }