. ├── app │   ├── Http │   │   ├── Controllers │   │   │   ├── Admin │   │   │   │   ├── AdminDashboardController.php │   │   │   │   ├── AlquilerController.php │   │   │   │   ├── AreaComunController.php │   │   │   │   ├── BloqueController.php │   │   │   │   ├── CamaraController.php │   │   │   │   ├── CondominioController.php │   │   │   │   ├── DashboardController.php │   │   │   │   ├── MultaController.php │   │   │   │   ├── PaymentController.php │   │   │   │   ├── ReservationController.php │   │   │   │   ├── SecurityController.php │   │   │   │   ├── SuperAdminController.php │   │   │   │   ├── UnidadController.php │   │   │   │   └── UserController.php │   │   │   ├── Auth │   │   │   │   ├── LoginController.php │   │   │   │   ├── LoginController.php.backup │   │   │   │   └── RegisterController.php │   │   │   ├── Resident │   │   │   │   ├── AlquilerController.php │   │   │   │   ├── DashboardController.php │   │   │   │   ├── PaymentController.php │   │   │   │   └── ReservationController.php │   │   │   ├── Security │   │   │   │   ├── AccessController.php │   │   │   │   ├── DashboardController.php │   │   │   │   └── IncidenteController.php │   │   │   ├── BloqueController.php │   │   │   ├── Controller.php │   │   │   ├── NotificationController.php │   │   │   └── ReclamacionController.php │   │   ├── Middleware │   │   │   ├── Authenticate.php │   │   │   ├── CheckRole.php │   │   │   ├── EncryptCookies.php │   │   │   ├── PreventRequestsDuringMaintenance.php │   │   │   ├── RedirectIfAuthenticated.php │   │   │   ├── TrimStrings.php │   │   │   ├── TrustProxies.php │   │   │   ├── ValidateSignature.php │   │   │   └── VerifyCsrfToken.php │   │   └── Requests │   │   └── Admin │   │   └── StoreCondominioRequest.php │   ├── Models │   │   ├── AreaComun.php │   │   ├── Bloque.php │   │   ├── Condominio.php │   │   ├── Notificacion.php │   │   ├── Unidad.php │   │   └── User.php │   └── Providers │   ├── AppServiceProvider.php │   ├── AuthServiceProvider.php │   ├── BroadcastServiceProvider.php │   ├── EventServiceProvider.php │   ├── RouteServiceProvider.php │   └── UrbanOSSServiceProvider.php ├── cache ├── config │   ├── app.php │   ├── app.php.backup │   ├── auth.php │   ├── cache.php │   ├── database.php │   ├── filesystems.php │   ├── logging.php │   ├── mail.php │   ├── queue.php │   ├── roles.php │   ├── services.php │   ├── session.php │   └── urbanoss.php ├── database │   ├── factories │   │   └── UserFactory.php │   ├── migrations │   │   ├── 0001_01_01_000000_create_users_table.php │   │   ├── 0001_01_01_000001_create_cache_table.php │   │   ├── 0001_01_01_000002_create_jobs_table.php │   │   ├── 2025_01_01_000001_create_bloques_table.php │   │   ├── 2025_01_01_000002_create_unidades_table.php │   │   ├── 2025_01_01_000003_create_areas_comunes_table.php │   │   ├── 2025_12_07_034932_add_deleted_at_to_users_table.php │   │   ├── 2025_12_07_042218_add_deleted_at_to_condominios_table.php │   │   ├── 2025_12_09_015905_add_ciudad_to_condominios_table.php │   │   └── xxxx_create_condominios_table.php │   ├── seeders │   │   ├── DatabaseSeeder.php │   │   └── TestUsersSeeder.php │   └── database.sqlite ├── resources │   ├── css │   │   └── app.css │   ├── js │   │   ├── components │   │   │   └── condominios │   │   │   └── RegistrarCondominio.vue │   │   ├── app.js │   │   └── bootstrap.js │   └── views │   ├── admin │   │   ├── accesos │   │   ├── alquileres │   │   ├── areas-comunes │   │   ├── bloques │   │   │   └── index.blade.php │   │   ├── camaras │   │   ├── dashboard │   │   │   ├── dashboard.blade.php │   │   │   └── index.blade.php │   │   ├── multas │   │   ├── payments │   │   ├── reservas │   │   ├── superadmin │   │   │   ├── condominios │   │   │   │   ├── create.blade.php │   │   │   │   ├── index.blade.php │   │   │   │   └── show.blade.php │   │   │   └── dashboard.blade.php │   │   ├── unidades │   │   │   └── index.blade.php │   │   └── users │   ├── auth │   │   ├── login.blade.php │   │   └── register.blade.php │   ├── dashboard │   │   └── dashboard.blade.php │   ├── layouts │   │   ├── admin.blade.php │   │   └── app.blade.php │   ├── profile │   │   └── edit.blade.php │   ├── resident │   │   ├── dashboard │   │   └── dashboard.blade.php │   ├── security │   ├── settings │   │   └── index.blade.php │   └── welcome.blade.php ├── routes │   ├── api.php │   ├── channels.php │   ├── favicon.php │   └── web.php ├── arbol_proyecto_filtrado.txt ├── artisan ├── composer.json ├── composer.lock ├── create_controllers.sh ├── error_log ├── estructura_proyecto.txt ├── exit ├── fix_all_routes.sh ├── fix_condominio_error.sh ├── fix_user_error.sh ├── package.json ├── package-lock.json ├── phpunit.xml ├── postcss.config.js ├── README.md ├── tailwind.config.js └── vite.config.js 47 directories, 120 files