. ├── 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 │   │   │   ├── Controller.php │   │   │   ├── NotificationController.php │   │   │   ├── ReclamacionController.php │   │   │   ├── Resident │   │   │   │   ├── AlquilerController.php │   │   │   │   ├── DashboardController.php │   │   │   │   ├── PaymentController.php │   │   │   │   └── ReservationController.php │   │   │   └── Security │   │   │   ├── AccessController.php │   │   │   ├── DashboardController.php │   │   │   └── IncidenteController.php │   │   └── Middleware │   │   ├── Authenticate.php │   │   ├── CheckRole.php │   │   ├── EncryptCookies.php │   │   ├── PreventRequestsDuringMaintenance.php │   │   ├── RedirectIfAuthenticated.php │   │   ├── TrimStrings.php │   │   ├── TrustProxies.php │   │   ├── ValidateSignature.php │   │   └── VerifyCsrfToken.php │   ├── Models │   │   ├── AreaComun.php │   │   ├── Bloque.php │   │   ├── Condominio.php │   │   ├── Unidad.php │   │   └── User.php │   └── Providers │   ├── AppServiceProvider.php │   ├── AuthServiceProvider.php │   ├── BroadcastServiceProvider.php │   ├── EventServiceProvider.php │   ├── RouteServiceProvider.php │   └── UrbanOSSServiceProvider.php ├── arbol_proyecto_filtrado.txt ├── artisan ├── bootstrap │   ├── app.php │   └── providers.php ├── composer.json ├── 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 ├── create_controllers.sh ├── database │   ├── database.sqlite │   ├── 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 │   │   ├── 2024_12_07_000000_add_deleted_at_to_users_table.php │   │   ├── 2024_12_07_000001_add_deleted_at_to_condominios_table.php │   │   ├── 2024_12_08_000001_add_extra_fields_to_users_table.php │   │   ├── 2024_12_09_100000_create_bloques_table.php │   │   ├── 2024_12_09_100001_add_bloque_id_to_unidades_table.php │   │   ├── 2024_12_09_100002_add_alquiler_to_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 │   └── seeders │   ├── DatabaseSeeder.php │   └── TestUsersSeeder.php ├── error_log ├── exit ├── package.json ├── package-lock.json ├── postcss.config.js ├── public │   ├── build │   │   ├── assets │   │   │   ├── app.COh4LNbB.css │   │   │   ├── app.css │   │   │   ├── app.CX_aNXBJ.js │   │   │   ├── app.js │   │   │   ├── fa-brands-400.D1LuMI3I.ttf │   │   │   ├── fa-brands-400.D_cYUPeE.woff2 │   │   │   ├── fa-regular-400.BjRzuEpd.woff2 │   │   │   ├── fa-regular-400.DZaxPHgR.ttf │   │   │   ├── fa-solid-900.CTAAxXor.woff2 │   │   │   └── fa-solid-900.D0aA9rwL.ttf │   │   └── manifest.json │   ├── debug.php │   ├── favicon.ico │   ├── favicon.png │   ├── favicon.svg │   ├── health.php │   ├── index.php │   └── robots.txt ├── resources │   ├── css │   │   └── app.css │   ├── js │   │   ├── 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 │   └── web.php.bak ├── tailwind.config.js ├── tests │   ├── Feature │   │   └── ExampleTest.php │   ├── TestCase.php │   └── Unit │   ├── ExampleTest.php │   └── UserModelTest.php └── vite.config.js 49 directories, 136 files