├── .gitignore ├── LICENSE ├── README.md └── doctor_appointment_app ├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── HelpDesk ├── Dotor Appointment App Bluprint.txt ├── ER_DIAGRAM(doctor_Appointment).pdf ├── doc_appointment.sql └── info.txt ├── README.md ├── app ├── Http │ ├── Controllers │ │ ├── AppointmentController.php │ │ ├── Auth │ │ │ ├── AuthenticatedSessionController.php │ │ │ ├── ConfirmablePasswordController.php │ │ │ ├── EmailVerificationNotificationController.php │ │ │ ├── EmailVerificationPromptController.php │ │ │ ├── NewPasswordController.php │ │ │ ├── PasswordController.php │ │ │ ├── PasswordResetLinkController.php │ │ │ ├── RegisteredUserController.php │ │ │ └── VerifyEmailController.php │ │ ├── AuthorAccessRole.php │ │ ├── Controller.php │ │ ├── DepartmentController.php │ │ ├── DlistController.php │ │ ├── DoctorProfileController.php │ │ ├── HospitalsController.php │ │ ├── MedicalHistoryController.php │ │ ├── MyprofileController.php │ │ ├── NotificationController.php │ │ ├── PatientProfileController.php │ │ ├── PaymentController.php │ │ ├── ProfileController.php │ │ ├── ReportController.php │ │ ├── ScheduleController.php │ │ ├── SettingController.php │ │ └── UserController.php │ ├── Middleware │ │ ├── Admin.php │ │ ├── Doctor.php │ │ └── Patient.php │ └── Requests │ │ ├── Auth │ │ └── LoginRequest.php │ │ └── ProfileUpdateRequest.php ├── Models │ ├── User.php │ ├── appointment.php │ ├── department.php │ ├── dlist.php │ ├── doctor_profile.php │ ├── hospitals.php │ ├── medical_history.php │ ├── myprofile.php │ ├── notification.php │ ├── patient_profile.php │ ├── payment.php │ ├── report.php │ ├── schedule.php │ └── setting.php ├── Providers │ └── AppServiceProvider.php └── View │ └── Components │ ├── AppLayout.php │ └── GuestLayout.php ├── artisan ├── bootstrap ├── app.php ├── cache │ └── .gitignore └── providers.php ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── cache.php ├── database.php ├── filesystems.php ├── logging.php ├── mail.php ├── queue.php ├── services.php └── session.php ├── database ├── .gitignore ├── 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_05_26_202914_create_departments_table.php │ ├── 2024_05_27_031458_create_doctor_profiles_table.php │ ├── 2024_05_27_031539_create_patient_profiles_table.php │ ├── 2024_05_27_031739_create_appointments_table.php │ ├── 2024_05_27_042112_create_medical_histories_table.php │ ├── 2024_05_27_042331_create_hospitals_table.php │ ├── 2024_05_27_130811_create_schedules_table.php │ ├── 2024_05_27_131220_create_notifications_table.php │ ├── 2024_05_27_132206_create_payments_table.php │ ├── 2024_05_27_132722_create_reports_table.php │ └── 2024_05_27_132939_create_settings_table.php └── seeders │ └── DatabaseSeeder.php ├── package-lock.json ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public ├── .htaccess ├── assets │ ├── css │ │ ├── bootstrap.min.css │ │ └── style.css │ ├── images │ │ ├── Cardiology.jpg │ │ ├── Endocrinology.jpg │ │ ├── Gastroenterology.jpg │ │ ├── Gynecology.jpg │ │ ├── Oncology.jpg │ │ ├── Ophthalmology.jpg │ │ ├── Pediatrilogy.avif │ │ ├── Pediatrilogy2.jpg │ │ ├── Radiology.jpg │ │ ├── dental.jpg │ │ ├── doc1.webp │ │ ├── doc2.jpg │ │ ├── doc3.jpg │ │ ├── doc4.webp │ │ ├── doc5.webp │ │ ├── doc6.jpg │ │ ├── doc7.jpg │ │ ├── doclogo.jpg │ │ ├── doctor.jpg │ │ ├── neurology.webp │ │ ├── operation.jpg │ │ ├── orthopedic.jpg │ │ ├── orthopedic2.png │ │ ├── patient.jpg │ │ └── psychology.jpg │ ├── img │ │ ├── testimonial-1.jpg │ │ ├── testimonial-2.jpg │ │ └── user.jpg │ ├── js │ │ └── main.js │ ├── lib │ │ ├── chart │ │ │ └── chart.min.js │ │ ├── easing │ │ │ ├── easing.js │ │ │ └── easing.min.js │ │ ├── owlcarousel │ │ │ ├── LICENSE │ │ │ ├── assets │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── owl.carousel.css │ │ │ │ ├── owl.carousel.min.css │ │ │ │ ├── owl.theme.default.css │ │ │ │ ├── owl.theme.default.min.css │ │ │ │ ├── owl.theme.green.css │ │ │ │ ├── owl.theme.green.min.css │ │ │ │ └── owl.video.play.png │ │ │ ├── owl.carousel.js │ │ │ └── owl.carousel.min.js │ │ ├── tempusdominus │ │ │ ├── css │ │ │ │ ├── tempusdominus-bootstrap-4.css │ │ │ │ └── tempusdominus-bootstrap-4.min.css │ │ │ └── js │ │ │ │ ├── moment-timezone.min.js │ │ │ │ ├── moment.min.js │ │ │ │ ├── tempusdominus-bootstrap-4.js │ │ │ │ └── tempusdominus-bootstrap-4.min.js │ │ └── waypoints │ │ │ ├── links.php │ │ │ └── waypoints.min.js │ └── scss │ │ ├── bootstrap.scss │ │ └── bootstrap │ │ └── scss │ │ ├── _accordion.scss │ │ ├── _alert.scss │ │ ├── _badge.scss │ │ ├── _breadcrumb.scss │ │ ├── _button-group.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _carousel.scss │ │ ├── _close.scss │ │ ├── _containers.scss │ │ ├── _dropdown.scss │ │ ├── _forms.scss │ │ ├── _functions.scss │ │ ├── _grid.scss │ │ ├── _helpers.scss │ │ ├── _images.scss │ │ ├── _list-group.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _nav.scss │ │ ├── _navbar.scss │ │ ├── _offcanvas.scss │ │ ├── _pagination.scss │ │ ├── _popover.scss │ │ ├── _progress.scss │ │ ├── _reboot.scss │ │ ├── _root.scss │ │ ├── _spinners.scss │ │ ├── _tables.scss │ │ ├── _toasts.scss │ │ ├── _tooltip.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── bootstrap-grid.scss │ │ ├── bootstrap-reboot.scss │ │ ├── bootstrap-utilities.scss │ │ ├── bootstrap.scss │ │ ├── forms │ │ ├── _floating-labels.scss │ │ ├── _form-check.scss │ │ ├── _form-control.scss │ │ ├── _form-range.scss │ │ ├── _form-select.scss │ │ ├── _form-text.scss │ │ ├── _input-group.scss │ │ ├── _labels.scss │ │ └── _validation.scss │ │ ├── helpers │ │ ├── _clearfix.scss │ │ ├── _colored-links.scss │ │ ├── _position.scss │ │ ├── _ratio.scss │ │ ├── _stretched-link.scss │ │ ├── _text-truncation.scss │ │ └── _visually-hidden.scss │ │ ├── mixins │ │ ├── _alert.scss │ │ ├── _border-radius.scss │ │ ├── _box-shadow.scss │ │ ├── _breakpoints.scss │ │ ├── _buttons.scss │ │ ├── _caret.scss │ │ ├── _clearfix.scss │ │ ├── _color-scheme.scss │ │ ├── _container.scss │ │ ├── _deprecate.scss │ │ ├── _forms.scss │ │ ├── _gradients.scss │ │ ├── _grid.scss │ │ ├── _image.scss │ │ ├── _list-group.scss │ │ ├── _lists.scss │ │ ├── _pagination.scss │ │ ├── _reset-text.scss │ │ ├── _resize.scss │ │ ├── _table-variants.scss │ │ ├── _text-truncate.scss │ │ ├── _transition.scss │ │ ├── _utilities.scss │ │ └── _visually-hidden.scss │ │ ├── utilities │ │ └── _api.scss │ │ └── vendor │ │ └── _rfs.scss ├── favicon.ico ├── images │ ├── Cardiology.jpg │ ├── Endocrinology.jpg │ ├── Gastroenterology.jpg │ ├── Gynecology.jpg │ ├── Oncology.jpg │ ├── Ophthalmology.jpg │ ├── Pediatrilogy.avif │ ├── Pediatrilogy2.jpg │ ├── Radiology.jpg │ ├── dental.jpg │ ├── doc1.webp │ ├── doc2.jpg │ ├── doc3.jpg │ ├── doc4.webp │ ├── doc5.webp │ ├── doc6.jpg │ ├── doc7.jpg │ ├── doclogo.jpg │ ├── doctor.jpg │ ├── neurology.webp │ ├── operation.jpg │ ├── orthopedic.jpg │ ├── orthopedic2.png │ ├── patient.jpg │ └── psychology.jpg ├── index.php └── robots.txt ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js └── views │ ├── aboutus.blade.php │ ├── admin │ ├── admindashboard.blade.php │ ├── app.blade.php │ ├── index.blade.php │ └── layouts │ │ ├── footer.blade.php │ │ ├── navbar.blade.php │ │ └── sidebar.blade.php │ ├── appointment │ └── index.blade.php │ ├── auth │ ├── confirm-password.blade.php │ ├── forgot-password.blade.php │ ├── login.blade.php │ ├── register.blade.php │ ├── reset-password.blade.php │ └── verify-email.blade.php │ ├── components │ ├── application-logo.blade.php │ ├── auth-session-status.blade.php │ ├── danger-button.blade.php │ ├── dropdown-link.blade.php │ ├── dropdown.blade.php │ ├── input-error.blade.php │ ├── input-label.blade.php │ ├── modal.blade.php │ ├── nav-link.blade.php │ ├── primary-button.blade.php │ ├── responsive-nav-link.blade.php │ ├── secondary-button.blade.php │ └── text-input.blade.php │ ├── dashboard.blade.php │ ├── departments │ ├── create.blade.php │ ├── edit.blade.php │ └── index.blade.php │ ├── doctor │ ├── create.blade.php │ ├── deptdoctors.blade.php │ ├── edit.blade.php │ └── index.blade.php │ ├── inc │ ├── error.blade.php │ ├── flash.blade.php │ ├── footer.blade.php │ ├── homepage.blade.php │ ├── login.blade.php │ ├── navbar.blade.php │ └── shortnav.blade.php │ ├── layouts │ ├── app.blade.php │ ├── guest.blade.php │ ├── main.blade.php │ ├── main2.blade.php │ └── navigation.blade.php │ ├── mprofile │ ├── edit.blade.php │ └── index.blade.php │ ├── patient │ ├── create.blade.php │ ├── edit.blade.php │ └── index.blade.php │ ├── profile │ ├── edit.blade.php │ └── partials │ │ ├── delete-user-form.blade.php │ │ ├── update-password-form.blade.php │ │ └── update-profile-information-form.blade.php │ ├── user │ ├── create.blade.php │ ├── edit.blade.php │ └── index.blade.php │ └── welcome.blade.php ├── routes ├── auth.php ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore └── framework │ ├── .gitignore │ ├── cache │ ├── .gitignore │ └── data │ │ └── .gitignore │ ├── sessions │ └── .gitignore │ ├── testing │ └── .gitignore │ └── views │ └── .gitignore ├── tailwind.config.js ├── tests ├── Feature │ ├── Auth │ │ ├── AuthenticationTest.php │ │ ├── EmailVerificationTest.php │ │ ├── PasswordConfirmationTest.php │ │ ├── PasswordResetTest.php │ │ ├── PasswordUpdateTest.php │ │ └── RegistrationTest.php │ ├── ExampleTest.php │ └── ProfileTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/README.md -------------------------------------------------------------------------------- /doctor_appointment_app/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/.editorconfig -------------------------------------------------------------------------------- /doctor_appointment_app/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/.env.example -------------------------------------------------------------------------------- /doctor_appointment_app/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/.gitattributes -------------------------------------------------------------------------------- /doctor_appointment_app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/.gitignore -------------------------------------------------------------------------------- /doctor_appointment_app/HelpDesk/Dotor Appointment App Bluprint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/HelpDesk/Dotor Appointment App Bluprint.txt -------------------------------------------------------------------------------- /doctor_appointment_app/HelpDesk/ER_DIAGRAM(doctor_Appointment).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/HelpDesk/ER_DIAGRAM(doctor_Appointment).pdf -------------------------------------------------------------------------------- /doctor_appointment_app/HelpDesk/doc_appointment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/HelpDesk/doc_appointment.sql -------------------------------------------------------------------------------- /doctor_appointment_app/HelpDesk/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/HelpDesk/info.txt -------------------------------------------------------------------------------- /doctor_appointment_app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/README.md -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Controllers/AppointmentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Controllers/AppointmentController.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Controllers/Auth/AuthenticatedSessionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Controllers/Auth/AuthenticatedSessionController.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Controllers/Auth/ConfirmablePasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Controllers/Auth/ConfirmablePasswordController.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Controllers/Auth/EmailVerificationNotificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Controllers/Auth/EmailVerificationNotificationController.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Controllers/Auth/EmailVerificationPromptController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Controllers/Auth/EmailVerificationPromptController.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Controllers/Auth/NewPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Controllers/Auth/NewPasswordController.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Controllers/Auth/PasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Controllers/Auth/PasswordController.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Controllers/Auth/PasswordResetLinkController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Controllers/Auth/PasswordResetLinkController.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Controllers/Auth/RegisteredUserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Controllers/Auth/RegisteredUserController.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Controllers/Auth/VerifyEmailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Controllers/Auth/VerifyEmailController.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Controllers/AuthorAccessRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Controllers/AuthorAccessRole.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Controllers/DepartmentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Controllers/DepartmentController.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Controllers/DlistController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Controllers/DlistController.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Controllers/DoctorProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Controllers/DoctorProfileController.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Controllers/HospitalsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Controllers/HospitalsController.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Controllers/MedicalHistoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Controllers/MedicalHistoryController.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Controllers/MyprofileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Controllers/MyprofileController.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Controllers/NotificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Controllers/NotificationController.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Controllers/PatientProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Controllers/PatientProfileController.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Controllers/PaymentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Controllers/PaymentController.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Controllers/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Controllers/ProfileController.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Controllers/ReportController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Controllers/ReportController.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Controllers/ScheduleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Controllers/ScheduleController.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Controllers/SettingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Controllers/SettingController.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Controllers/UserController.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Middleware/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Middleware/Admin.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Middleware/Doctor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Middleware/Doctor.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Middleware/Patient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Middleware/Patient.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Requests/Auth/LoginRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Requests/Auth/LoginRequest.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Http/Requests/ProfileUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Http/Requests/ProfileUpdateRequest.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Models/User.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Models/appointment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Models/appointment.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Models/department.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Models/department.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Models/dlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Models/dlist.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Models/doctor_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Models/doctor_profile.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Models/hospitals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Models/hospitals.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Models/medical_history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Models/medical_history.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Models/myprofile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Models/myprofile.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Models/notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Models/notification.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Models/patient_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Models/patient_profile.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Models/payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Models/payment.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Models/report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Models/report.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Models/schedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Models/schedule.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Models/setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Models/setting.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/View/Components/AppLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/View/Components/AppLayout.php -------------------------------------------------------------------------------- /doctor_appointment_app/app/View/Components/GuestLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/app/View/Components/GuestLayout.php -------------------------------------------------------------------------------- /doctor_appointment_app/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/artisan -------------------------------------------------------------------------------- /doctor_appointment_app/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/bootstrap/app.php -------------------------------------------------------------------------------- /doctor_appointment_app/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /doctor_appointment_app/bootstrap/providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/bootstrap/providers.php -------------------------------------------------------------------------------- /doctor_appointment_app/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/composer.json -------------------------------------------------------------------------------- /doctor_appointment_app/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/composer.lock -------------------------------------------------------------------------------- /doctor_appointment_app/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/config/app.php -------------------------------------------------------------------------------- /doctor_appointment_app/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/config/auth.php -------------------------------------------------------------------------------- /doctor_appointment_app/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/config/cache.php -------------------------------------------------------------------------------- /doctor_appointment_app/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/config/database.php -------------------------------------------------------------------------------- /doctor_appointment_app/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/config/filesystems.php -------------------------------------------------------------------------------- /doctor_appointment_app/config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/config/logging.php -------------------------------------------------------------------------------- /doctor_appointment_app/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/config/mail.php -------------------------------------------------------------------------------- /doctor_appointment_app/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/config/queue.php -------------------------------------------------------------------------------- /doctor_appointment_app/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/config/services.php -------------------------------------------------------------------------------- /doctor_appointment_app/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/config/session.php -------------------------------------------------------------------------------- /doctor_appointment_app/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /doctor_appointment_app/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/database/factories/UserFactory.php -------------------------------------------------------------------------------- /doctor_appointment_app/database/migrations/0001_01_01_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/database/migrations/0001_01_01_000000_create_users_table.php -------------------------------------------------------------------------------- /doctor_appointment_app/database/migrations/0001_01_01_000001_create_cache_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/database/migrations/0001_01_01_000001_create_cache_table.php -------------------------------------------------------------------------------- /doctor_appointment_app/database/migrations/0001_01_01_000002_create_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/database/migrations/0001_01_01_000002_create_jobs_table.php -------------------------------------------------------------------------------- /doctor_appointment_app/database/migrations/2024_05_26_202914_create_departments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/database/migrations/2024_05_26_202914_create_departments_table.php -------------------------------------------------------------------------------- /doctor_appointment_app/database/migrations/2024_05_27_031458_create_doctor_profiles_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/database/migrations/2024_05_27_031458_create_doctor_profiles_table.php -------------------------------------------------------------------------------- /doctor_appointment_app/database/migrations/2024_05_27_031539_create_patient_profiles_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/database/migrations/2024_05_27_031539_create_patient_profiles_table.php -------------------------------------------------------------------------------- /doctor_appointment_app/database/migrations/2024_05_27_031739_create_appointments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/database/migrations/2024_05_27_031739_create_appointments_table.php -------------------------------------------------------------------------------- /doctor_appointment_app/database/migrations/2024_05_27_042112_create_medical_histories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/database/migrations/2024_05_27_042112_create_medical_histories_table.php -------------------------------------------------------------------------------- /doctor_appointment_app/database/migrations/2024_05_27_042331_create_hospitals_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/database/migrations/2024_05_27_042331_create_hospitals_table.php -------------------------------------------------------------------------------- /doctor_appointment_app/database/migrations/2024_05_27_130811_create_schedules_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/database/migrations/2024_05_27_130811_create_schedules_table.php -------------------------------------------------------------------------------- /doctor_appointment_app/database/migrations/2024_05_27_131220_create_notifications_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/database/migrations/2024_05_27_131220_create_notifications_table.php -------------------------------------------------------------------------------- /doctor_appointment_app/database/migrations/2024_05_27_132206_create_payments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/database/migrations/2024_05_27_132206_create_payments_table.php -------------------------------------------------------------------------------- /doctor_appointment_app/database/migrations/2024_05_27_132722_create_reports_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/database/migrations/2024_05_27_132722_create_reports_table.php -------------------------------------------------------------------------------- /doctor_appointment_app/database/migrations/2024_05_27_132939_create_settings_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/database/migrations/2024_05_27_132939_create_settings_table.php -------------------------------------------------------------------------------- /doctor_appointment_app/database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /doctor_appointment_app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/package-lock.json -------------------------------------------------------------------------------- /doctor_appointment_app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/package.json -------------------------------------------------------------------------------- /doctor_appointment_app/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/phpunit.xml -------------------------------------------------------------------------------- /doctor_appointment_app/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/postcss.config.js -------------------------------------------------------------------------------- /doctor_appointment_app/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/.htaccess -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/css/style.css -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/images/Cardiology.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/images/Cardiology.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/images/Endocrinology.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/images/Endocrinology.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/images/Gastroenterology.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/images/Gastroenterology.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/images/Gynecology.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/images/Gynecology.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/images/Oncology.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/images/Oncology.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/images/Ophthalmology.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/images/Ophthalmology.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/images/Pediatrilogy.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/images/Pediatrilogy.avif -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/images/Pediatrilogy2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/images/Pediatrilogy2.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/images/Radiology.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/images/Radiology.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/images/dental.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/images/dental.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/images/doc1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/images/doc1.webp -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/images/doc2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/images/doc2.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/images/doc3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/images/doc3.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/images/doc4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/images/doc4.webp -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/images/doc5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/images/doc5.webp -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/images/doc6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/images/doc6.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/images/doc7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/images/doc7.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/images/doclogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/images/doclogo.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/images/doctor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/images/doctor.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/images/neurology.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/images/neurology.webp -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/images/operation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/images/operation.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/images/orthopedic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/images/orthopedic.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/images/orthopedic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/images/orthopedic2.png -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/images/patient.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/images/patient.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/images/psychology.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/images/psychology.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/img/testimonial-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/img/testimonial-1.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/img/testimonial-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/img/testimonial-2.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/img/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/img/user.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/js/main.js -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/lib/chart/chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/lib/chart/chart.min.js -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/lib/easing/easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/lib/easing/easing.js -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/lib/easing/easing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/lib/easing/easing.min.js -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/lib/owlcarousel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/lib/owlcarousel/LICENSE -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/lib/owlcarousel/assets/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/lib/owlcarousel/assets/ajax-loader.gif -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/lib/owlcarousel/assets/owl.carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/lib/owlcarousel/assets/owl.carousel.css -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/lib/owlcarousel/assets/owl.carousel.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/lib/owlcarousel/assets/owl.carousel.min.css -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/lib/owlcarousel/assets/owl.theme.default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/lib/owlcarousel/assets/owl.theme.default.css -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/lib/owlcarousel/assets/owl.theme.default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/lib/owlcarousel/assets/owl.theme.default.min.css -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/lib/owlcarousel/assets/owl.theme.green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/lib/owlcarousel/assets/owl.theme.green.css -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/lib/owlcarousel/assets/owl.theme.green.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/lib/owlcarousel/assets/owl.theme.green.min.css -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/lib/owlcarousel/assets/owl.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/lib/owlcarousel/assets/owl.video.play.png -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/lib/owlcarousel/owl.carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/lib/owlcarousel/owl.carousel.js -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/lib/owlcarousel/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/lib/owlcarousel/owl.carousel.min.js -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/lib/tempusdominus/css/tempusdominus-bootstrap-4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/lib/tempusdominus/css/tempusdominus-bootstrap-4.css -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/lib/tempusdominus/css/tempusdominus-bootstrap-4.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/lib/tempusdominus/css/tempusdominus-bootstrap-4.min.css -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/lib/tempusdominus/js/moment-timezone.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/lib/tempusdominus/js/moment-timezone.min.js -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/lib/tempusdominus/js/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/lib/tempusdominus/js/moment.min.js -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/lib/tempusdominus/js/tempusdominus-bootstrap-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/lib/tempusdominus/js/tempusdominus-bootstrap-4.js -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/lib/tempusdominus/js/tempusdominus-bootstrap-4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/lib/tempusdominus/js/tempusdominus-bootstrap-4.min.js -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/lib/waypoints/links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/lib/waypoints/links.php -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/lib/waypoints/waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/lib/waypoints/waypoints.min.js -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_accordion.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_alert.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_badge.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_breadcrumb.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_button-group.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_buttons.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_card.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_carousel.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_close.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_containers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_containers.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_dropdown.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_forms.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_functions.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_grid.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_helpers.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_images.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_list-group.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_mixins.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_modal.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_nav.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_navbar.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_offcanvas.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_offcanvas.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_pagination.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_popover.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_progress.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_reboot.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_root.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_spinners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_spinners.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_tables.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_toasts.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_tooltip.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_transitions.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_type.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_utilities.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/_variables.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/bootstrap-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/bootstrap-grid.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/bootstrap-reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/bootstrap-reboot.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/bootstrap-utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/bootstrap-utilities.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/bootstrap.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/forms/_floating-labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/forms/_floating-labels.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/forms/_form-check.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/forms/_form-check.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/forms/_form-control.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/forms/_form-control.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/forms/_form-range.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/forms/_form-range.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/forms/_form-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/forms/_form-select.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/forms/_form-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/forms/_form-text.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/forms/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/forms/_input-group.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/forms/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/forms/_labels.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/forms/_validation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/forms/_validation.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/helpers/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/helpers/_clearfix.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/helpers/_colored-links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/helpers/_colored-links.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/helpers/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/helpers/_position.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/helpers/_ratio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/helpers/_ratio.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/helpers/_stretched-link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/helpers/_stretched-link.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/helpers/_text-truncation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/helpers/_text-truncation.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/helpers/_visually-hidden.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/helpers/_visually-hidden.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_alert.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_border-radius.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_box-shadow.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_buttons.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_caret.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_caret.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_clearfix.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_color-scheme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_color-scheme.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_container.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_deprecate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_deprecate.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_forms.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_gradients.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_grid.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_image.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_list-group.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_lists.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_pagination.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_reset-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_reset-text.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_resize.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_table-variants.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_table-variants.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_text-truncate.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_transition.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_utilities.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_visually-hidden.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/mixins/_visually-hidden.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/utilities/_api.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/utilities/_api.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/assets/scss/bootstrap/scss/vendor/_rfs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/assets/scss/bootstrap/scss/vendor/_rfs.scss -------------------------------------------------------------------------------- /doctor_appointment_app/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doctor_appointment_app/public/images/Cardiology.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/images/Cardiology.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/images/Endocrinology.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/images/Endocrinology.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/images/Gastroenterology.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/images/Gastroenterology.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/images/Gynecology.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/images/Gynecology.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/images/Oncology.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/images/Oncology.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/images/Ophthalmology.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/images/Ophthalmology.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/images/Pediatrilogy.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/images/Pediatrilogy.avif -------------------------------------------------------------------------------- /doctor_appointment_app/public/images/Pediatrilogy2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/images/Pediatrilogy2.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/images/Radiology.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/images/Radiology.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/images/dental.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/images/dental.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/images/doc1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/images/doc1.webp -------------------------------------------------------------------------------- /doctor_appointment_app/public/images/doc2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/images/doc2.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/images/doc3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/images/doc3.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/images/doc4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/images/doc4.webp -------------------------------------------------------------------------------- /doctor_appointment_app/public/images/doc5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/images/doc5.webp -------------------------------------------------------------------------------- /doctor_appointment_app/public/images/doc6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/images/doc6.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/images/doc7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/images/doc7.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/images/doclogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/images/doclogo.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/images/doctor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/images/doctor.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/images/neurology.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/images/neurology.webp -------------------------------------------------------------------------------- /doctor_appointment_app/public/images/operation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/images/operation.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/images/orthopedic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/images/orthopedic.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/images/orthopedic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/images/orthopedic2.png -------------------------------------------------------------------------------- /doctor_appointment_app/public/images/patient.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/images/patient.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/images/psychology.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/images/psychology.jpg -------------------------------------------------------------------------------- /doctor_appointment_app/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/public/index.php -------------------------------------------------------------------------------- /doctor_appointment_app/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /doctor_appointment_app/resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/css/app.css -------------------------------------------------------------------------------- /doctor_appointment_app/resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/js/app.js -------------------------------------------------------------------------------- /doctor_appointment_app/resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/js/bootstrap.js -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/aboutus.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/aboutus.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/admin/admindashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/admin/admindashboard.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/admin/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/admin/app.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/admin/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/admin/index.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/admin/layouts/footer.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/admin/layouts/navbar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/admin/layouts/navbar.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/admin/layouts/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/admin/layouts/sidebar.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/appointment/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/appointment/index.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/auth/confirm-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/auth/confirm-password.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/auth/forgot-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/auth/forgot-password.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/auth/reset-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/auth/reset-password.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/auth/verify-email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/auth/verify-email.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/components/application-logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/components/application-logo.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/components/auth-session-status.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/components/auth-session-status.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/components/danger-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/components/danger-button.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/components/dropdown-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/components/dropdown-link.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/components/dropdown.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/components/dropdown.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/components/input-error.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/components/input-error.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/components/input-label.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/components/input-label.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/components/modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/components/modal.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/components/nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/components/nav-link.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/components/primary-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/components/primary-button.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/components/responsive-nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/components/responsive-nav-link.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/components/secondary-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/components/secondary-button.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/components/text-input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/components/text-input.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/dashboard.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/departments/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/departments/create.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/departments/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/departments/edit.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/departments/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/departments/index.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/doctor/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/doctor/create.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/doctor/deptdoctors.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/doctor/deptdoctors.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/doctor/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/doctor/edit.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/doctor/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/doctor/index.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/inc/error.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/inc/error.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/inc/flash.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/inc/flash.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/inc/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/inc/footer.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/inc/homepage.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/inc/homepage.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/inc/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/inc/login.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/inc/navbar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/inc/navbar.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/inc/shortnav.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/inc/shortnav.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/layouts/guest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/layouts/guest.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/layouts/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/layouts/main.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/layouts/main2.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/layouts/main2.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/layouts/navigation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/layouts/navigation.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/mprofile/edit.blade.php: -------------------------------------------------------------------------------- 1 |

edit pro

-------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/mprofile/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/mprofile/index.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/patient/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/patient/create.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/patient/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/patient/edit.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/patient/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/patient/index.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/profile/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/profile/edit.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/profile/partials/delete-user-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/profile/partials/delete-user-form.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/profile/partials/update-password-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/profile/partials/update-password-form.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/profile/partials/update-profile-information-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/profile/partials/update-profile-information-form.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/user/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/user/create.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/user/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/user/edit.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/user/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/user/index.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /doctor_appointment_app/routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/routes/auth.php -------------------------------------------------------------------------------- /doctor_appointment_app/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/routes/console.php -------------------------------------------------------------------------------- /doctor_appointment_app/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/routes/web.php -------------------------------------------------------------------------------- /doctor_appointment_app/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /doctor_appointment_app/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /doctor_appointment_app/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/storage/framework/.gitignore -------------------------------------------------------------------------------- /doctor_appointment_app/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /doctor_appointment_app/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /doctor_appointment_app/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /doctor_appointment_app/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /doctor_appointment_app/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /doctor_appointment_app/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/tailwind.config.js -------------------------------------------------------------------------------- /doctor_appointment_app/tests/Feature/Auth/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/tests/Feature/Auth/AuthenticationTest.php -------------------------------------------------------------------------------- /doctor_appointment_app/tests/Feature/Auth/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/tests/Feature/Auth/EmailVerificationTest.php -------------------------------------------------------------------------------- /doctor_appointment_app/tests/Feature/Auth/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/tests/Feature/Auth/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /doctor_appointment_app/tests/Feature/Auth/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/tests/Feature/Auth/PasswordResetTest.php -------------------------------------------------------------------------------- /doctor_appointment_app/tests/Feature/Auth/PasswordUpdateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/tests/Feature/Auth/PasswordUpdateTest.php -------------------------------------------------------------------------------- /doctor_appointment_app/tests/Feature/Auth/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/tests/Feature/Auth/RegistrationTest.php -------------------------------------------------------------------------------- /doctor_appointment_app/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /doctor_appointment_app/tests/Feature/ProfileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/tests/Feature/ProfileTest.php -------------------------------------------------------------------------------- /doctor_appointment_app/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/tests/TestCase.php -------------------------------------------------------------------------------- /doctor_appointment_app/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /doctor_appointment_app/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MD-IQBAL-HOSAIN/Doctor_Appointment_App/HEAD/doctor_appointment_app/vite.config.js --------------------------------------------------------------------------------