Server IP : 162.241.203.66 / Your IP : 216.73.216.5 Web Server : Apache System : Linux br994.hostgator.com.br 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : devgen83 ( 6473) PHP Version : 8.2.22 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0750) : /home4/devgen83/inovafaculdade.shop/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
# Estrutura Completa do Projeto ``` ├── app/ │ ├── Console/ │ │ ├── Commands/ │ │ │ ├── ImportUniversities.php │ │ │ └── PopulateBrazilianStatesAndCities.php │ ├── Facades/ │ │ └── Logger.php │ ├── Helpers/ │ │ └── LogHelper.php │ ├── Http/ │ │ ├── Controllers/ │ │ │ ├── Admin/ │ │ │ │ └── LogController.php │ │ │ ├── Auth/ │ │ │ │ └── AuthController.php │ │ │ ├── Onboarding/ │ │ │ │ └── OnboardingController.php │ │ │ ├── Profile/ │ │ │ │ └── ProfileController.php │ │ │ └── Controller.php │ │ ├── Middleware/ │ │ │ ├── CheckOnboardingStatus.php │ │ │ ├── CheckUserAccess.php │ │ │ ├── OnboardingSessionTimeout.php │ │ │ ├── SecurityHeaders.php │ │ │ ├── SecurityHeadersMiddleware.php │ │ │ └── ThrottleLogins.php │ │ ├── Requests/ │ │ │ ├── Admin/ │ │ │ │ └── LogFilterRequest.php │ │ │ ├── Auth/ │ │ │ │ ├── ForgotPasswordRequest.php │ │ │ │ ├── LoginRequest.php │ │ │ │ ├── RegisterRequest.php │ │ │ │ └── ResetPasswordRequest.php │ │ │ ├── Onboarding/ │ │ │ │ ├── EducationRequest.php │ │ │ │ ├── InterestsRequest.php │ │ │ │ ├── LocationRequest.php │ │ │ │ └── SummaryRequest.php │ │ │ ├── Profile/ │ │ │ │ ├── ChangePasswordRequest.php │ │ │ │ └── UpdateProfileRequest.php │ ├── Models/ │ │ ├── City.php │ │ ├── Course.php │ │ ├── Interest.php │ │ ├── State.php │ │ ├── SystemLog.php │ │ ├── University.php │ │ ├── User.php │ │ ├── UserInterest.php │ │ └── UserProfile.php │ ├── Notifications/ │ │ ├── Auth/ │ │ │ └── ResetPasswordNotification.php │ ├── Providers/ │ │ ├── AppServiceProvider.php │ │ ├── LogServiceProvider.php │ │ └── SecurityServiceProvider.php │ ├── Repositories/ │ │ ├── Auth/ │ │ │ └── UserRepository.php │ │ ├── Log/ │ │ │ └── LogRepository.php │ │ ├── Profile/ │ │ │ └── ProfileRepository.php │ ├── Services/ │ │ ├── Auth/ │ │ │ └── AuthService.php │ │ ├── Log/ │ │ │ └── LogService.php │ │ ├── Profile/ │ │ │ └── ProfileService.php ├── bootstrap/ │ ├── cache/ │ │ ├── .gitignore │ │ ├── config.php │ │ ├── events.php │ │ ├── packages.php │ │ └── services.php │ ├── app.php │ └── providers.php ├── config/ │ ├── app.php │ ├── auth.php │ ├── cache.php │ ├── database.php │ ├── filesystems.php │ ├── logging.php │ ├── mail.php │ ├── queue.php │ ├── services.php │ └── session.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_03_22_232209_add_social_columns_to_users_table.php │ │ ├── 2025_03_23_223440_create_states_table.php │ │ ├── 2025_03_23_223441_create_cities_table.php │ │ ├── 2025_03_23_223442_create_courses_table.php │ │ ├── 2025_03_23_223442_create_universities_table.php │ │ ├── 2025_03_23_223443_create_interests_table.php │ │ ├── 2025_03_23_223443_create_user_profiles_table.php │ │ ├── 2025_03_23_223444_create_user_interests_table.php │ │ ├── 2025_03_23_235353_add_location_to_universities_table.php │ │ ├── 2025_04_01_234803_update_password_resets_table.php │ │ ├── 2025_04_01_235433_update_password_reset_tokens_table.php │ │ ├── 2025_04_12_221020_add_avatar_and_phone_to_users_table.php │ │ └── 2025_04_16_181234_create_system_logs_table.php │ ├── seeders/ │ │ ├── CoursesSeeder.php │ │ ├── DatabaseSeeder.php │ │ ├── InterestsSeeder.php │ │ ├── StatesAndCitiesSeeder.php │ │ └── UniversitiesSeeder.php │ ├── .gitignore │ └── database.sqlite ├── public/ │ ├── assets/ │ │ ├── imgs/ │ │ │ ├── Image.png │ │ │ ├── administrador.png │ │ │ ├── calendario.png │ │ │ ├── check.png │ │ │ ├── comunidade.png │ │ │ ├── configuracoes.png │ │ │ ├── construction.gif │ │ │ ├── dashboard.png │ │ │ ├── edit.png │ │ │ ├── estagios.png │ │ │ ├── horas-complementares.png │ │ │ ├── icone-branco.png │ │ │ ├── icone.png │ │ │ ├── imagem-perfil.png │ │ │ ├── logo-branca.png │ │ │ ├── logo.png │ │ │ ├── mapa.png │ │ │ ├── menu.png │ │ │ ├── notificacao.png │ │ │ ├── notifications-button.png │ │ │ ├── opotunidades.png │ │ │ ├── perfil.png │ │ │ ├── permissoes.png │ │ │ ├── search.png │ │ │ ├── senha.png │ │ │ ├── seta-branca.png │ │ │ ├── seta.png │ │ │ └── user-button.png │ ├── css/ │ │ ├── menu.css │ │ └── style.css │ ├── js/ │ │ ├── login.js │ │ ├── menu.js │ │ └── onboarding.js │ ├── storage/ │ │ ├── profile_images/ │ │ │ └── 1744406448.jpg │ │ └── .gitignore │ ├── uploads/ │ │ ├── avatars/ │ │ │ ├── 1744496023_1.jpg │ │ │ └── 1744825949_2.jpg │ ├── .htaccess │ ├── favicon.ico │ ├── index.php │ └── robots.txt ├── resources/ │ ├── css/ │ │ └── app.css │ ├── js/ │ │ ├── app.js │ │ └── bootstrap.js │ ├── views/ │ │ ├── admin/ │ │ │ ├── logs/ │ │ │ │ ├── dashboard.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── show.blade.php │ │ ├── auth/ │ │ │ ├── forgot-password-success.blade.php │ │ │ ├── forgot-password.blade.php │ │ │ ├── login.blade.php │ │ │ ├── register.blade.php │ │ │ ├── reset-password-success.blade.php │ │ │ └── reset-password.blade.php │ │ ├── construction/ │ │ │ └── construction.blade.php │ │ ├── dashboard/ │ │ │ └── index.blade.php │ │ ├── emails/ │ │ │ ├── auth/ │ │ │ │ └── reset-password.blade.php │ │ ├── layouts/ │ │ │ ├── app.blade.php │ │ │ ├── auth.blade.php │ │ │ ├── navbar.blade.php │ │ │ ├── onboarding.blade.php │ │ │ └── sidebar.blade.php │ │ ├── onboarding/ │ │ │ ├── education.blade.php │ │ │ ├── interests.blade.php │ │ │ ├── location.blade.php │ │ │ └── summary.blade.php │ │ ├── pages/ │ │ ├── profile/ │ │ │ └── index.blade.php │ │ └── welcome.blade.php ├── routes/ │ ├── console.php │ └── web.php ├── storage/ │ ├── app/ │ │ ├── private/ │ │ │ └── .gitignore │ │ ├── public/ │ │ │ ├── profile_images/ │ │ │ │ └── 1744406448.jpg │ │ │ └── .gitignore │ │ └── .gitignore │ ├── datamec/ │ │ └── relatorio_consulta_publica_avancada_ies_28_03_2025_21_51_54.csv │ ├── framework/ │ │ ├── cache/ │ │ │ ├── data/ │ │ │ │ └── .gitignore │ │ │ └── .gitignore │ │ ├── sessions/ │ │ │ └── .gitignore │ │ ├── testing/ │ │ │ └── .gitignore │ │ ├── views/ │ │ │ ├── .gitignore │ │ │ ├── 0198384b49a4da0748c8285199a54667.php │ │ │ ├── 0313a32b9d8d3faacbb12ac8df91e7b7.php │ │ │ ├── 078b76f7cc9f31c26f264303e77e7945.php │ │ │ ├── 0ca60ca350d6fe9479228a59a5ee2b53.php │ │ │ ├── 0d01a3641656ce56ff208b0add065995.php │ │ │ ├── 15659aa5f52452f90a3dc6984ef879f3.php │ │ │ ├── 1d76f1b09603f91156f995cab4cffee0.php │ │ │ ├── 2251761002fc8f1f6196d1c72b807140.php │ │ │ ├── 22b3594d88d97d8350766d8898aafb24.php │ │ │ ├── 23e347ee01c1a362fc53f5f265f137b6.php │ │ │ ├── 2bfc91238441ed2b550aa8fcd1cc822a.php │ │ │ ├── 2c824ab80bf75aa1fbbb73351c648687.php │ │ │ ├── 2d19593ced57ca37d50a6666fb205f4e.php │ │ │ ├── 2f9544b9be6ddf14576cced01591272a.php │ │ │ ├── 2fce2c0289e137e9b9cc871b9c5f2917.php │ │ │ ├── 33131e8c728fdff57a407089d8917979.php │ │ │ ├── 359f6c17e176d4d711ee144f7709d4b8.php │ │ │ ├── 3748a583604726ca4701193230c1f86f.php │ │ │ ├── 3996e73d02619526b1d8d990d551a15e.php │ │ │ ├── 421aeb69b285cb5f5710084a00d2d2f6.php │ │ │ ├── 48b5ab5fb6e1eb7f3f5765eb4b7106af.php │ │ │ ├── 4af75fd322a210bbc20cc816ee6378c1.php │ │ │ ├── 4efa705830520ec64b4ae160bc961dd0.php │ │ │ ├── 552daad6cab1af86f028eb9ed4bd0225.php │ │ │ ├── 555c19be2a9624f961fce05c42ca558a.php │ │ │ ├── 5d893b3a431438ab01cbdb5357ed3717.php │ │ │ ├── 6139479d1679cd449892fc8b4735fd06.php │ │ │ ├── 6341a066846bd929ff42ca8a75e93a0b.php │ │ │ ├── 66cb89d58983c9be3dd2515ae118394b.php │ │ │ ├── 6f8e55c87659fefde2ac4e9dc4c2199d.php │ │ │ ├── 71051241a519edad90d0d349ec5ce4a5.php │ │ │ ├── 71f5489101ebf1e8952758e22dab87f8.php │ │ │ ├── 72c905eeed18cd3b8da43c353735ed3d.php │ │ │ ├── 7ad9b79533ed815420e8662b2acd1d43.php │ │ │ ├── 7b13f472a3ddb4f5151f78bdade9aab5.php │ │ │ ├── 7bd3ef4625a36ba8c11fca68f60f1338.php │ │ │ ├── 7d13d8b137dd70224467f34f10589b8d.php │ │ │ ├── 7d4b69b7fcc9e381ac6cb276892f50ab.php │ │ │ ├── 7e6693e686ec1acb1c71885226b6d035.php │ │ │ ├── 7eec3d8e1405a4603e2735bf50dd91f5.php │ │ │ ├── 8016e75f77c308935f02456682888d51.php │ │ │ ├── 89fab54371630a0bed9bcb0a7cbfca51.php │ │ │ ├── 913467b811b329af16378456e553382f.php │ │ │ ├── 918bd6899cffc5768229518c3a325479.php │ │ │ ├── 994280dd13b51dccbba2187e0e0b12c5.php │ │ │ ├── 9a2019bb25400b1815d998d6daffb274.php │ │ │ ├── 9b9339034c0fe08e4a8e14d3079d4426.php │ │ │ ├── 9c1f91422b2c91e094d188ee385e22eb.php │ │ │ ├── 9eb01ad6ca492854204c40440248ba67.php │ │ │ ├── 9f77abe1b57bb5ae094eff431edd2601.php │ │ │ ├── 9fb7de7c3db4e920868eccf2893b176c.php │ │ │ ├── a0768aa10877fe99eacc8598bd8136df.php │ │ │ ├── a2bcf9225fa221276010a355fd08a768.php │ │ │ ├── a57397442d1d7ef6b9c77318b0729865.php │ │ │ ├── a5eed01917ec4244b59cb4f403436036.php │ │ │ ├── a7eb39448968924762718923f05ba8b5.php │ │ │ ├── aaf9fed68a819fcb80e275986f249525.php │ │ │ ├── ad7c9256ac52455bfe3fae29beccaca9.php │ │ │ ├── b09264dea113129f406569e4e92bd060.php │ │ │ ├── b158494e7474fdd536cd6eb7470fa3a3.php │ │ │ ├── b33a923b8b94b66267689fbadbf65183.php │ │ │ ├── b56cd9136a6169bff5ace74a28b22568.php │ │ │ ├── b6bc2660510a625c98418160e3843b7f.php │ │ │ ├── b73d065325ec55e52a1fc30ff134ccf7.php │ │ │ ├── b80c78ffb45b725d8510bc77bd1f7b27.php │ │ │ ├── b86e909255a27cb633ee856b06ea1fba.php │ │ │ ├── b9931e570b28ae60721d09d2f609f5ff.php │ │ │ ├── b9c12d54ebabfc078207bffe99b14c68.php │ │ │ ├── bbcd5b9ab6dc31fdf3bb1a4b6ad9f601.php │ │ │ ├── bc15b59b2fc96b69a18100eb2436f980.php │ │ │ ├── bd13387fd0aaff961b148157835e9e02.php │ │ │ ├── bfd075458b7969b30d072a3161f2d9c5.php │ │ │ ├── c0cb43686fb2e0f8beb1a180a399e138.php │ │ │ ├── d2e2766a98691b0f5c51fbe40bc3fa18.php │ │ │ ├── d4f4f403c6eb69b0abfefdb093f6ba42.php │ │ │ ├── d8f2db095c129b83fda54911f9c91908.php │ │ │ ├── d921ec1b52c7c13a7b39bd6d797408c1.php │ │ │ ├── dd05adf796dfd67668e77aa244dd33cd.php │ │ │ ├── e00fb7acb37112fe59ab29774484cfeb.php │ │ │ ├── f8e0c654080567edababb26a311c518b.php │ │ │ └── fcb1d49244c5c223e62cd33cd722e22a.php │ │ └── .gitignore │ ├── logs/ │ │ ├── .gitignore │ │ └── laravel.log ├── tests/ │ ├── Feature/ │ │ └── ExampleTest.php │ ├── Unit/ │ │ └── ExampleTest.php │ └── TestCase.php ├── .editorconfig ├── .env ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── artisan ├── composer.json ├── composer.lock ├── estrutura-projeto.md ├── map-structure.php ├── package.json ├── phpunit.xml └── vite.config.js ```