├── .env ├── .gitattributes ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── _ide_helper.php ├── app ├── Appointment.php ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── AppointmentController.php │ │ ├── AppointmentDoctorController.php │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ └── ResetPasswordController.php │ │ ├── Controller.php │ │ ├── HelpController.php │ │ ├── HomeController.php │ │ └── ProficiencyController.php │ ├── Kernel.php │ └── Middleware │ │ ├── DoctorMiddleware.php │ │ ├── EncryptCookies.php │ │ ├── HelpMiddleware.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ └── VerifyCsrfToken.php ├── Proficiency.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── User.php ├── node_modules │ └── .yarn-integrity ├── role.php └── yarn.lock ├── artisan ├── bootstrap ├── app.php ├── autoload.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── database.php ├── filesystems.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── ModelFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2017_05_11_200607_create_role_users_table.php │ ├── 2017_05_11_200729_create_roles_table.php │ ├── 2017_05_12_115258_create_appointments_table.php │ ├── 2017_05_14_205016_create_proficiencies_table.php │ └── 2017_05_17_190450_create_proficiency_user_table.php └── seeds │ ├── AppointmentTableSeeder.php │ ├── CustomerCreateSeeder.php │ ├── DatabaseSeeder.php │ ├── ProficiencyTableSeeder.php │ └── UsersTableSeeder.php ├── healthit.pptx ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ └── app.css ├── favicon.ico ├── fonts │ └── vendor │ │ └── bootstrap-sass │ │ └── bootstrap │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 ├── index.php ├── js │ └── app.js ├── mix-manifest.json ├── robots.txt └── web.config ├── readme.md ├── resources ├── assets │ ├── js │ │ ├── App.vue │ │ ├── app.js │ │ ├── components │ │ │ └── DataViewer.Vue │ │ ├── router.js │ │ └── views │ │ │ ├── appointment │ │ │ └── index.vue │ │ │ └── proficiency │ │ │ └── index.vue │ └── sass │ │ ├── _variables.scss │ │ └── app.scss ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ ├── auth │ ├── login.blade.php │ └── passwords │ │ ├── email.blade.php │ │ └── reset.blade.php │ ├── help │ ├── appointment │ │ ├── edit.blade.php │ │ ├── home.blade.php │ │ └── register.blade.php │ ├── home.blade.php │ ├── proficiency │ │ ├── attach.blade.php │ │ ├── edit.blade.php │ │ ├── home.blade.php │ │ └── register.blade.php │ ├── register.blade.php │ └── users │ │ ├── edit.blade.php │ │ └── home.blade.php │ ├── layouts │ └── app.blade.php │ ├── medic │ ├── appointment │ │ ├── edit.blade.php │ │ ├── home.blade.php │ │ └── show.blade.php │ └── home.blade.php │ ├── partials │ └── flash.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/.env -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /_ide_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/_ide_helper.php -------------------------------------------------------------------------------- /app/Appointment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/Appointment.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/AppointmentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/Http/Controllers/AppointmentController.php -------------------------------------------------------------------------------- /app/Http/Controllers/AppointmentDoctorController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/Http/Controllers/AppointmentDoctorController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/HelpController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/Http/Controllers/HelpController.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ProficiencyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/Http/Controllers/ProficiencyController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/DoctorMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/Http/Middleware/DoctorMiddleware.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/HelpMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/Http/Middleware/HelpMiddleware.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Proficiency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/Proficiency.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/User.php -------------------------------------------------------------------------------- /app/node_modules/.yarn-integrity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/node_modules/.yarn-integrity -------------------------------------------------------------------------------- /app/role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/role.php -------------------------------------------------------------------------------- /app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/app/yarn.lock -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/bootstrap/autoload.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2017_05_11_200607_create_role_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/database/migrations/2017_05_11_200607_create_role_users_table.php -------------------------------------------------------------------------------- /database/migrations/2017_05_11_200729_create_roles_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/database/migrations/2017_05_11_200729_create_roles_table.php -------------------------------------------------------------------------------- /database/migrations/2017_05_12_115258_create_appointments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/database/migrations/2017_05_12_115258_create_appointments_table.php -------------------------------------------------------------------------------- /database/migrations/2017_05_14_205016_create_proficiencies_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/database/migrations/2017_05_14_205016_create_proficiencies_table.php -------------------------------------------------------------------------------- /database/migrations/2017_05_17_190450_create_proficiency_user_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/database/migrations/2017_05_17_190450_create_proficiency_user_table.php -------------------------------------------------------------------------------- /database/seeds/AppointmentTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/database/seeds/AppointmentTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/CustomerCreateSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/database/seeds/CustomerCreateSeeder.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeds/ProficiencyTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/database/seeds/ProficiencyTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/UsersTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/database/seeds/UsersTableSeeder.php -------------------------------------------------------------------------------- /healthit.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/healthit.pptx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/public/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/public/web.config -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/readme.md -------------------------------------------------------------------------------- /resources/assets/js/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/assets/js/App.vue -------------------------------------------------------------------------------- /resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/assets/js/app.js -------------------------------------------------------------------------------- /resources/assets/js/components/DataViewer.Vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/assets/js/components/DataViewer.Vue -------------------------------------------------------------------------------- /resources/assets/js/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/assets/js/router.js -------------------------------------------------------------------------------- /resources/assets/js/views/appointment/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/assets/js/views/appointment/index.vue -------------------------------------------------------------------------------- /resources/assets/js/views/proficiency/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/assets/js/views/proficiency/index.vue -------------------------------------------------------------------------------- /resources/assets/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/assets/sass/_variables.scss -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/assets/sass/app.scss -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/views/auth/passwords/email.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/views/auth/passwords/reset.blade.php -------------------------------------------------------------------------------- /resources/views/help/appointment/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/views/help/appointment/edit.blade.php -------------------------------------------------------------------------------- /resources/views/help/appointment/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/views/help/appointment/home.blade.php -------------------------------------------------------------------------------- /resources/views/help/appointment/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/views/help/appointment/register.blade.php -------------------------------------------------------------------------------- /resources/views/help/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/views/help/home.blade.php -------------------------------------------------------------------------------- /resources/views/help/proficiency/attach.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/views/help/proficiency/attach.blade.php -------------------------------------------------------------------------------- /resources/views/help/proficiency/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/views/help/proficiency/edit.blade.php -------------------------------------------------------------------------------- /resources/views/help/proficiency/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/views/help/proficiency/home.blade.php -------------------------------------------------------------------------------- /resources/views/help/proficiency/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/views/help/proficiency/register.blade.php -------------------------------------------------------------------------------- /resources/views/help/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/views/help/register.blade.php -------------------------------------------------------------------------------- /resources/views/help/users/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/views/help/users/edit.blade.php -------------------------------------------------------------------------------- /resources/views/help/users/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/views/help/users/home.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/medic/appointment/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/views/medic/appointment/edit.blade.php -------------------------------------------------------------------------------- /resources/views/medic/appointment/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/views/medic/appointment/home.blade.php -------------------------------------------------------------------------------- /resources/views/medic/appointment/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/views/medic/appointment/show.blade.php -------------------------------------------------------------------------------- /resources/views/medic/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/views/medic/home.blade.php -------------------------------------------------------------------------------- /resources/views/partials/flash.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/views/partials/flash.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcovoliveira/healthit/HEAD/webpack.mix.js --------------------------------------------------------------------------------