├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── Admin_Html_Dashboard ├── activities.html ├── applied-jobs.html ├── approval-setting.html ├── apptitude-result.html ├── archived-jobs.html ├── assets.html ├── assets │ ├── css │ │ ├── bootstrap-datetimepicker.min.css │ │ ├── bootstrap.min.css │ │ ├── dataTables.bootstrap4.min.css │ │ ├── font-awesome.min.css │ │ ├── fullcalendar.min.css │ │ ├── line-awesome.min.css │ │ ├── select2.min.css │ │ └── style.css │ ├── fonts │ │ ├── CircularStd-Black.woff │ │ ├── CircularStd-BlackItalic.woff │ │ ├── CircularStd-Bold.woff │ │ ├── CircularStd-BoldItalic.woff │ │ ├── CircularStd-Book.woff │ │ ├── CircularStd-BookItalic.woff │ │ ├── CircularStd-Medium.woff │ │ ├── CircularStd-MediumItalic.woff │ │ ├── MaterialIcons-Regular.eot │ │ ├── MaterialIcons-Regular.ttf │ │ ├── MaterialIcons-Regular.woff │ │ ├── MaterialIcons-Regular.woff2 │ │ ├── fontawesome-webfont-1.eot │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── la-brands-400-1.eot │ │ ├── la-brands-400.eot │ │ ├── la-brands-400.svg │ │ ├── la-brands-400.ttf │ │ ├── la-brands-400.woff │ │ ├── la-brands-400.woff2 │ │ ├── la-regular-400-1.eot │ │ ├── la-regular-400.eot │ │ ├── la-regular-400.svg │ │ ├── la-regular-400.ttf │ │ ├── la-regular-400.woff │ │ ├── la-regular-400.woff2 │ │ ├── la-solid-900.eot │ │ ├── la-solid-900.svg │ │ ├── la-solid-900.woff │ │ └── la-solid-900.woff2 │ ├── img │ │ ├── attachment.png │ │ ├── favicon.jpg │ │ ├── flags │ │ │ ├── de.png │ │ │ ├── es.png │ │ │ ├── fr.png │ │ │ └── us.png │ │ ├── logo.jpg │ │ ├── logo2.jpg │ │ ├── placeholder.jpg │ │ ├── profiles │ │ │ ├── avatar-01.jpg │ │ │ ├── avatar-02.jpg │ │ │ ├── avatar-03.jpg │ │ │ ├── avatar-04.jpg │ │ │ ├── avatar-05.jpg │ │ │ ├── avatar-06.jpg │ │ │ ├── avatar-07.jpg │ │ │ ├── avatar-08.jpg │ │ │ ├── avatar-09.jpg │ │ │ ├── avatar-10.jpg │ │ │ ├── avatar-11.jpg │ │ │ ├── avatar-12.jpg │ │ │ ├── avatar-13.jpg │ │ │ ├── avatar-14.jpg │ │ │ ├── avatar-15.jpg │ │ │ ├── avatar-16.jpg │ │ │ ├── avatar-17.jpg │ │ │ ├── avatar-18.jpg │ │ │ ├── avatar-19.jpg │ │ │ ├── avatar-20.jpg │ │ │ ├── avatar-21.jpg │ │ │ ├── avatar-22.jpg │ │ │ ├── avatar-24.jpg │ │ │ ├── avatar-25.jpg │ │ │ ├── avatar-26.jpg │ │ │ ├── avatar-28.jpg │ │ │ └── avatar-29.jpg │ │ ├── user.jpg │ │ └── video-call.jpg │ ├── js │ │ ├── Chart.min.js │ │ ├── app.js │ │ ├── bootstrap-datetimepicker.min.js │ │ ├── bootstrap.min.js │ │ ├── chart.js │ │ ├── dataTables.bootstrap4.min.js │ │ ├── dropfiles.js │ │ ├── fullcalendar.min.js │ │ ├── jquery-3.5.1.min.js │ │ ├── jquery.dataTables.min.js │ │ ├── jquery.fullcalendar.js │ │ ├── jquery.maskedinput.min.js │ │ ├── jquery.slimscroll.min.js │ │ ├── jquery.ui.touch-punch.min.js │ │ ├── line-chart.js │ │ ├── mask.js │ │ ├── moment.min.js │ │ ├── multiselect.min.js │ │ ├── popper.min.js │ │ ├── select2.min.js │ │ └── task.js │ └── plugins │ │ ├── bootstrap-tagsinput │ │ ├── bootstrap-tagsinput.css │ │ └── bootstrap-tagsinput.min.js │ │ ├── morris │ │ ├── morris.css │ │ └── morris.min.js │ │ ├── raphael │ │ └── raphael.min.js │ │ ├── sticky-kit-master │ │ └── dist │ │ │ └── sticky-kit.min.js │ │ └── summernote │ │ └── dist │ │ ├── font │ │ ├── summernote.eot │ │ ├── summernote.ttf │ │ └── summernote.woff │ │ ├── summernote-bs4.css │ │ └── summernote-bs4.min.js ├── attendance-employee.html ├── attendance-reports.html ├── attendance.html ├── blank-page.html ├── budget-expenses.html ├── budget-revenues.html ├── budgets.html ├── candidates.html ├── categories.html ├── change-password.html ├── chat.html ├── client-profile.html ├── clients-list.html ├── clients.html ├── components.html ├── compose.html ├── contacts.html ├── create-estimate.html ├── create-invoice.html ├── cron-setting.html ├── daily-reports.html ├── data-tables.html ├── departments.html ├── designations.html ├── edit-estimate.html ├── edit-invoice.html ├── email-settings.html ├── employee-dashboard.html ├── employee-reports.html ├── employees-list.html ├── employees.html ├── error-404.html ├── error-500.html ├── estimate-view.html ├── estimates.html ├── events.html ├── expense-reports.html ├── expenses.html ├── experiance-level.html ├── faq.html ├── file-manager.html ├── forgot-password.html ├── form-basic-inputs.html ├── form-horizontal.html ├── form-input-groups.html ├── form-mask.html ├── form-validation.html ├── form-vertical.html ├── goal-tracking.html ├── goal-type.html ├── holidays.html ├── inbox.html ├── incoming-call.html ├── index.html ├── interview-questions.html ├── interviewing.html ├── invoice-reports.html ├── invoice-settings.html ├── invoice-view.html ├── invoices.html ├── job-applicants.html ├── job-aptitude.html ├── job-details.html ├── job-list.html ├── job-view.html ├── jobs-dashboard.html ├── jobs.html ├── knowledgebase-view.html ├── knowledgebase.html ├── leads.html ├── leave-reports.html ├── leave-settings.html ├── leave-type.html ├── leaves-employee.html ├── leaves.html ├── localization.html ├── lock-screen.html ├── login.html ├── manage-resumes.html ├── notifications-settings.html ├── offer_approvals.html ├── offered-jobs.html ├── otp.html ├── outgoing-call.html ├── overtime.html ├── payments-reports.html ├── payments.html ├── payroll-items.html ├── payslip-reports.html ├── performance-appraisal.html ├── performance-indicator.html ├── performance-setting.html ├── performance.html ├── policies.html ├── privacy-policy.html ├── profile.html ├── project-list.html ├── project-reports.html ├── project-view.html ├── projects.html ├── promotion.html ├── provident-fund.html ├── questions.html ├── register.html ├── resignation.html ├── roles-permissions.html ├── salary-settings.html ├── salary-view.html ├── salary.html ├── saved-jobs.html ├── schedule-timing.html ├── search.html ├── settings.html ├── shift-list.html ├── shift-scheduling.html ├── shortlist-candidates.html ├── sub-category.html ├── subscribed-companies.html ├── subscriptions-company.html ├── subscriptions.html ├── tables-basic.html ├── task-board.html ├── task-reports.html ├── tasks.html ├── taxes.html ├── termination.html ├── terms.html ├── theme-settings.html ├── ticket-view.html ├── tickets.html ├── timesheet.html ├── toxbox-setting.html ├── trainers.html ├── training-type.html ├── training.html ├── user-all-jobs.html ├── user-dashboard.html ├── user-reports.html ├── users.html ├── video-call.html ├── visited-jobs.html └── voice-call.html ├── README.md ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── AdviceController.php │ │ ├── AllergyController.php │ │ ├── Auth │ │ │ ├── ConfirmPasswordController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── BedController.php │ │ ├── BedTypeController.php │ │ ├── BillingController.php │ │ ├── BillingInvoiceController.php │ │ ├── BillingInvoiceDetailController.php │ │ ├── BillingTransactionController.php │ │ ├── BloodBankController.php │ │ ├── BloodDonorController.php │ │ ├── BloodRequestController.php │ │ ├── BloodStockController.php │ │ ├── BloodStockDetailController.php │ │ ├── BranchController.php │ │ ├── ChequeDetailController.php │ │ ├── Controller.php │ │ ├── DepartmentController.php │ │ ├── DiagnoseController.php │ │ ├── DoctorController.php │ │ ├── DoctorOrderController.php │ │ ├── HomeController.php │ │ ├── HospitalSettingsController.php │ │ ├── ImmunizationController.php │ │ ├── InvestigationController.php │ │ ├── LabTestController.php │ │ ├── LaboratoryController.php │ │ ├── LaborotoryController.php │ │ ├── MedicalCertificateController.php │ │ ├── MedicineCategoryController.php │ │ ├── MedicineController.php │ │ ├── MedicineTypeController.php │ │ ├── NurseController.php │ │ ├── OperationController.php │ │ ├── OperationTypeController.php │ │ ├── PatientController.php │ │ ├── PatientRecordController.php │ │ ├── PatientVisitController.php │ │ ├── PharmacyController.php │ │ ├── PharmacyInvoiceController.php │ │ ├── PrescriptionController.php │ │ ├── PresentingComplainController.php │ │ ├── PurchaseController.php │ │ ├── RoomController.php │ │ ├── RoomTypeController.php │ │ ├── SampleCollectionController.php │ │ ├── ScheduleController.php │ │ ├── SpecialistController.php │ │ ├── SupplierController.php │ │ ├── TestTypeController.php │ │ ├── UserController.php │ │ ├── VitalController.php │ │ └── WardController.php │ ├── Jambasangsang │ │ └── Traits │ │ │ └── createable.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ ├── StoreAdviceRequest.php │ │ ├── StoreAllergyRequest.php │ │ ├── StoreBedRequest.php │ │ ├── StoreBedTypeRequest.php │ │ ├── StoreBillingInvoiceDetailRequest.php │ │ ├── StoreBillingInvoiceRequest.php │ │ ├── StoreBillingRequest.php │ │ ├── StoreBillingTransactionRequest.php │ │ ├── StoreBloodBankRequest.php │ │ ├── StoreBloodDonorRequest.php │ │ ├── StoreBloodRequestRequest.php │ │ ├── StoreBloodStockDetailRequest.php │ │ ├── StoreBloodStockRequest.php │ │ ├── StoreBranchRequest.php │ │ ├── StoreChequeDetailRequest.php │ │ ├── StoreDepartmentRequest.php │ │ ├── StoreDiagnoseRequest.php │ │ ├── StoreDoctorOrderRequest.php │ │ ├── StoreDoctorRequest.php │ │ ├── StoreHospitalSettingsRequest.php │ │ ├── StoreImmunizationRequest.php │ │ ├── StoreInvestigationRequest.php │ │ ├── StoreLabTestRequest.php │ │ ├── StoreLaboratoryRequest.php │ │ ├── StoreLaborotoryRequest.php │ │ ├── StoreMedicalCertificateRequest.php │ │ ├── StoreMedicineCategoryRequest.php │ │ ├── StoreMedicineRequest.php │ │ ├── StoreMedicineTypeRequest.php │ │ ├── StoreNurseRequest.php │ │ ├── StoreOperationTypeRequest.php │ │ ├── StorePatientRecordRequest.php │ │ ├── StorePatientRequest.php │ │ ├── StorePatientVisitRequest.php │ │ ├── StorePharmacyInvoiceRequest.php │ │ ├── StorePharmacyRequest.php │ │ ├── StorePrescriptionRequest.php │ │ ├── StorePresentingComplainRequest.php │ │ ├── StorePurchaseRequest.php │ │ ├── StoreRoomRequest.php │ │ ├── StoreRoomTypeRequest.php │ │ ├── StoreSampleCollectionRequest.php │ │ ├── StoreScheduleRequest.php │ │ ├── StoreSpecialistRequest.php │ │ ├── StoreSupplierRequest.php │ │ ├── StoreTestTypeRequest.php │ │ ├── StoreVitalRequest.php │ │ ├── StoreWardRequest.php │ │ ├── StoreoperationRequest.php │ │ ├── UpdateAdviceRequest.php │ │ ├── UpdateAllergyRequest.php │ │ ├── UpdateBedRequest.php │ │ ├── UpdateBedTypeRequest.php │ │ ├── UpdateBillingInvoiceDetailRequest.php │ │ ├── UpdateBillingInvoiceRequest.php │ │ ├── UpdateBillingRequest.php │ │ ├── UpdateBillingTransactionRequest.php │ │ ├── UpdateBloodBankRequest.php │ │ ├── UpdateBloodDonorRequest.php │ │ ├── UpdateBloodRequestRequest.php │ │ ├── UpdateBloodStockDetailRequest.php │ │ ├── UpdateBloodStockRequest.php │ │ ├── UpdateBranchRequest.php │ │ ├── UpdateChequeDetailRequest.php │ │ ├── UpdateDepartmentRequest.php │ │ ├── UpdateDiagnoseRequest.php │ │ ├── UpdateDoctorOrderRequest.php │ │ ├── UpdateDoctorRequest.php │ │ ├── UpdateHospitalSettingsRequest.php │ │ ├── UpdateImmunizationRequest.php │ │ ├── UpdateInvestigationRequest.php │ │ ├── UpdateLabTestRequest.php │ │ ├── UpdateLaboratoryRequest.php │ │ ├── UpdateLaborotoryRequest.php │ │ ├── UpdateMedicalCertificateRequest.php │ │ ├── UpdateMedicineCategoryRequest.php │ │ ├── UpdateMedicineRequest.php │ │ ├── UpdateMedicineTypeRequest.php │ │ ├── UpdateNurseRequest.php │ │ ├── UpdateOperationTypeRequest.php │ │ ├── UpdatePatientRecordRequest.php │ │ ├── UpdatePatientRequest.php │ │ ├── UpdatePatientVisitRequest.php │ │ ├── UpdatePharmacyInvoiceRequest.php │ │ ├── UpdatePharmacyRequest.php │ │ ├── UpdatePrescriptionRequest.php │ │ ├── UpdatePresentingComplainRequest.php │ │ ├── UpdatePurchaseRequest.php │ │ ├── UpdateRoomRequest.php │ │ ├── UpdateRoomTypeRequest.php │ │ ├── UpdateSampleCollectionRequest.php │ │ ├── UpdateScheduleRequest.php │ │ ├── UpdateSpecialistRequest.php │ │ ├── UpdateSupplierRequest.php │ │ ├── UpdateTestTypeRequest.php │ │ ├── UpdateVitalRequest.php │ │ ├── UpdateWardRequest.php │ │ └── UpdateoperationRequest.php ├── Jambasangsang │ ├── constant.php │ └── helper.php ├── Models │ ├── Advice.php │ ├── Allergy.php │ ├── Bed.php │ ├── BedType.php │ ├── Billing.php │ ├── BillingInvoice.php │ ├── BillingInvoiceDetail.php │ ├── BillingTransaction.php │ ├── BloodBank.php │ ├── BloodDonor.php │ ├── BloodRequest.php │ ├── BloodStock.php │ ├── BloodStockDetail.php │ ├── Branch.php │ ├── ChequeDetail.php │ ├── Department.php │ ├── Diagnose.php │ ├── Doctor.php │ ├── DoctorOrder.php │ ├── HospitalSetting.php │ ├── Immunization.php │ ├── Investigation.php │ ├── LabTest.php │ ├── Laboratory.php │ ├── MedicalCertificate.php │ ├── Medicine.php │ ├── MedicineCategory.php │ ├── MedicineType.php │ ├── Nurse.php │ ├── OperationType.php │ ├── Patient.php │ ├── PatientRecord.php │ ├── PatientVisit.php │ ├── Pharmacy.php │ ├── PharmacyInvoice.php │ ├── Prescription.php │ ├── PresentingComplain.php │ ├── Purchase.php │ ├── Room.php │ ├── RoomType.php │ ├── SampleCollection.php │ ├── Schedule.php │ ├── Specialist.php │ ├── Supplier.php │ ├── TestType.php │ ├── User.php │ ├── Vital.php │ ├── Ward.php │ └── operation.php ├── Policies │ ├── AdvicePolicy.php │ ├── AllergyPolicy.php │ ├── BedPolicy.php │ ├── BedTypePolicy.php │ ├── BillingInvoiceDetailPolicy.php │ ├── BillingInvoicePolicy.php │ ├── BillingPolicy.php │ ├── BillingTransactionPolicy.php │ ├── BloodBankPolicy.php │ ├── BloodDonorPolicy.php │ ├── BloodRequestPolicy.php │ ├── BloodStockDetailPolicy.php │ ├── BloodStockPolicy.php │ ├── BranchPolicy.php │ ├── ChequeDetailPolicy.php │ ├── DepartmentPolicy.php │ ├── DiagnosePolicy.php │ ├── DoctorOrderPolicy.php │ ├── DoctorPolicy.php │ ├── HospitalSettingsPolicy.php │ ├── ImmunizationPolicy.php │ ├── InvestigationPolicy.php │ ├── LabTestPolicy.php │ ├── LaboratoryPolicy.php │ ├── LaborotoryPolicy.php │ ├── MedicalCertificatePolicy.php │ ├── MedicineCategoryPolicy.php │ ├── MedicinePolicy.php │ ├── MedicineTypePolicy.php │ ├── NursePolicy.php │ ├── OperationPolicy.php │ ├── OperationTypePolicy.php │ ├── PatientPolicy.php │ ├── PatientRecordPolicy.php │ ├── PatientVisitPolicy.php │ ├── PharmacyInvoicePolicy.php │ ├── PharmacyPolicy.php │ ├── PrescriptionPolicy.php │ ├── PresentingComplainPolicy.php │ ├── PurchasePolicy.php │ ├── RoomPolicy.php │ ├── RoomTypePolicy.php │ ├── SampleCollectionPolicy.php │ ├── SchedulePolicy.php │ ├── SpecialistPolicy.php │ ├── SupplierPolicy.php │ ├── TestTypePolicy.php │ ├── VitalPolicy.php │ └── WardPolicy.php └── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── permission.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ ├── AdviceFactory.php │ ├── AllergyFactory.php │ ├── BedFactory.php │ ├── BedTypeFactory.php │ ├── BillingFactory.php │ ├── BillingInvoiceDetailFactory.php │ ├── BillingInvoiceFactory.php │ ├── BillingTransactionFactory.php │ ├── BloodBankFactory.php │ ├── BloodDonorFactory.php │ ├── BloodRequestFactory.php │ ├── BloodStockDetailFactory.php │ ├── BloodStockFactory.php │ ├── BranchFactory.php │ ├── ChequeDetailFactory.php │ ├── DepartmentFactory.php │ ├── DiagnoseFactory.php │ ├── DoctorFactory.php │ ├── DoctorOrderFactory.php │ ├── HospitalSettingFactory.php │ ├── ImmunizationFactory.php │ ├── InvestigationFactory.php │ ├── LabTestFactory.php │ ├── LaboratoryFactory.php │ ├── LaborotoryFactory.php │ ├── MedicalCertificateFactory.php │ ├── MedicineCategoryFactory.php │ ├── MedicineFactory.php │ ├── MedicineTypeFactory.php │ ├── NurseFactory.php │ ├── OperationFactory.php │ ├── OperationTypeFactory.php │ ├── PatientFactory.php │ ├── PatientRecordFactory.php │ ├── PatientVisitFactory.php │ ├── PharmacyFactory.php │ ├── PharmacyInvoiceFactory.php │ ├── PrescriptionFactory.php │ ├── PresentingComplainFactory.php │ ├── PurchaseFactory.php │ ├── RoomFactory.php │ ├── RoomTypeFactory.php │ ├── SampleCollectionFactory.php │ ├── ScheduleFactory.php │ ├── SpecialistFactory.php │ ├── SupplierFactory.php │ ├── TestTypeFactory.php │ ├── UserFactory.php │ ├── VitalFactory.php │ └── WardFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2022_02_10_104633_create_hospital_settings_table.php │ ├── 2022_02_10_104831_create_branches_table.php │ ├── 2022_02_10_104851_create_departments_table.php │ ├── 2022_02_10_104907_create_specialists_table.php │ ├── 2022_02_10_104923_create_doctors_table.php │ ├── 2022_02_10_104936_create_nurses_table.php │ ├── 2022_02_10_104951_create_patients_table.php │ ├── 2022_02_10_105020_create_patient_visits_table.php │ ├── 2022_02_10_105039_create_patient_records_table.php │ ├── 2022_02_10_105102_create_schedules_table.php │ ├── 2022_02_10_105134_create_laboratories_table.php │ ├── 2022_02_10_105150_create_blood_banks_table.php │ ├── 2022_02_10_105207_create_operation_types_table.php │ ├── 2022_02_10_105208_create_operations_table.php │ ├── 2022_02_10_105246_create_medicine_types_table.php │ ├── 2022_02_10_105301_create_medicine_categories_table.php │ ├── 2022_02_10_105319_create_suppliers_table.php │ ├── 2022_02_10_105333_create_purchases_table.php │ ├── 2022_02_10_105348_create_medicines_table.php │ ├── 2022_02_10_105414_create_prescriptions_table.php │ ├── 2022_02_10_105429_create_vitals_table.php │ ├── 2022_02_10_105446_create_allergies_table.php │ ├── 2022_02_10_105505_create_immunizations_table.php │ ├── 2022_02_10_105525_create_presenting_complains_table.php │ ├── 2022_02_10_105543_create_diagnoses_table.php │ ├── 2022_02_10_105603_create_blood_donors_table.php │ ├── 2022_02_10_105627_create_test_types_table.php │ ├── 2022_02_10_105628_create_investigations_table.php │ ├── 2022_02_10_105645_create_advice_table.php │ ├── 2022_02_10_105712_create_medical_certificates_table.php │ ├── 2022_02_10_105754_create_pharmacies_table.php │ ├── 2022_02_10_105815_create_doctor_orders_table.php │ ├── 2022_02_10_105830_create_billings_table.php │ ├── 2022_02_10_105844_create_billing_invoices_table.php │ ├── 2022_02_10_105845_create_billing_transactions_table.php │ ├── 2022_02_10_105914_create_billing_invoice_details_table.php │ ├── 2022_02_10_105935_create_cheque_details_table.php │ ├── 2022_02_10_105954_create_sample_collections_table.php │ ├── 2022_02_10_110009_create_wards_table.php │ ├── 2022_02_10_110027_create_room_types_table.php │ ├── 2022_02_10_110044_create_bed_types_table.php │ ├── 2022_02_10_110059_create_rooms_table.php │ ├── 2022_02_10_110111_create_beds_table.php │ ├── 2022_02_10_110139_create_pharmacy_invoices_table.php │ ├── 2022_02_10_110200_create_blood_requests_table.php │ ├── 2022_02_10_110216_create_blood_stocks_table.php │ ├── 2022_02_10_110229_create_blood_stock_details_table.php │ ├── 2022_02_10_110245_create_lab_tests_table.php │ └── 2022_02_13_082137_create_permission_tables.php └── seeders │ ├── AdviceSeeder.php │ ├── AllergySeeder.php │ ├── BedSeeder.php │ ├── BedTypeSeeder.php │ ├── BillingInvoiceDetailSeeder.php │ ├── BillingInvoiceSeeder.php │ ├── BillingSeeder.php │ ├── BillingTransactionSeeder.php │ ├── BloodBankSeeder.php │ ├── BloodDonorSeeder.php │ ├── BloodRequestSeeder.php │ ├── BloodStockDetailSeeder.php │ ├── BloodStockSeeder.php │ ├── BranchSeeder.php │ ├── ChequeDetailSeeder.php │ ├── DatabaseSeeder.php │ ├── DepartmentSeeder.php │ ├── DiagnoseSeeder.php │ ├── DoctorOrderSeeder.php │ ├── DoctorSeeder.php │ ├── HospitalSettingSeeder.php │ ├── ImmunizationSeeder.php │ ├── InvestigationSeeder.php │ ├── LabTestSeeder.php │ ├── LaboratorySeeder.php │ ├── LaborotorySeeder.php │ ├── MedicalCertificateSeeder.php │ ├── MedicineCategorySeeder.php │ ├── MedicineSeeder.php │ ├── MedicineTypeSeeder.php │ ├── NurseSeeder.php │ ├── OperationSeeder.php │ ├── OperationTypeSeeder.php │ ├── PatientRecordSeeder.php │ ├── PatientSeeder.php │ ├── PatientVisitSeeder.php │ ├── PermissionSeeder.php │ ├── PharmacyInvoiceSeeder.php │ ├── PharmacySeeder.php │ ├── PrescriptionSeeder.php │ ├── PresentingComplainSeeder.php │ ├── PurchaseSeeder.php │ ├── RolesAndPermissionsSeeder.php │ ├── RoomSeeder.php │ ├── RoomTypeSeeder.php │ ├── SampleCollectionSeeder.php │ ├── ScheduleSeeder.php │ ├── SpecialistSeeder.php │ ├── SupplierSeeder.php │ ├── TestTypeSeeder.php │ ├── UsersTableSeeder.php │ ├── VitalSeeder.php │ └── WardSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ └── app.css ├── favicon.ico ├── index.php ├── jambasangsang │ └── assets │ │ ├── css │ │ ├── app.css │ │ ├── bootstrap-datetimepicker.min.css │ │ ├── bootstrap.min.css │ │ ├── dataTables.bootstrap4.min.css │ │ ├── font-awesome.min.css │ │ ├── fullcalendar.min.css │ │ ├── line-awesome.min.css │ │ ├── select2.min.css │ │ └── style.css │ │ ├── fonts │ │ ├── CircularStd-Black.woff │ │ ├── CircularStd-BlackItalic.woff │ │ ├── CircularStd-Bold.woff │ │ ├── CircularStd-BoldItalic.woff │ │ ├── CircularStd-Book.woff │ │ ├── CircularStd-BookItalic.woff │ │ ├── CircularStd-Medium.woff │ │ ├── CircularStd-MediumItalic.woff │ │ ├── MaterialIcons-Regular.eot │ │ ├── MaterialIcons-Regular.ttf │ │ ├── MaterialIcons-Regular.woff │ │ ├── MaterialIcons-Regular.woff2 │ │ ├── fontawesome-webfont-1.eot │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── la-brands-400-1.eot │ │ ├── la-brands-400.eot │ │ ├── la-brands-400.svg │ │ ├── la-brands-400.ttf │ │ ├── la-brands-400.woff │ │ ├── la-brands-400.woff2 │ │ ├── la-regular-400-1.eot │ │ ├── la-regular-400.eot │ │ ├── la-regular-400.svg │ │ ├── la-regular-400.ttf │ │ ├── la-regular-400.woff │ │ ├── la-regular-400.woff2 │ │ ├── la-solid-900.eot │ │ ├── la-solid-900.svg │ │ ├── la-solid-900.woff │ │ └── la-solid-900.woff2 │ │ ├── img │ │ ├── attachment.png │ │ ├── favicon.jpg │ │ ├── flags │ │ │ ├── de.png │ │ │ ├── es.png │ │ │ ├── fr.png │ │ │ └── us.png │ │ ├── logo.jpg │ │ ├── logo2.jpg │ │ ├── no-record-found.png │ │ ├── placeholder.jpg │ │ ├── profiles │ │ │ ├── avatar-01.jpg │ │ │ ├── avatar-02.jpg │ │ │ ├── avatar-03.jpg │ │ │ ├── avatar-04.jpg │ │ │ ├── avatar-05.jpg │ │ │ ├── avatar-06.jpg │ │ │ ├── avatar-07.jpg │ │ │ ├── avatar-08.jpg │ │ │ ├── avatar-09.jpg │ │ │ ├── avatar-10.jpg │ │ │ ├── avatar-11.jpg │ │ │ ├── avatar-12.jpg │ │ │ ├── avatar-13.jpg │ │ │ ├── avatar-14.jpg │ │ │ ├── avatar-15.jpg │ │ │ ├── avatar-16.jpg │ │ │ ├── avatar-17.jpg │ │ │ ├── avatar-18.jpg │ │ │ ├── avatar-19.jpg │ │ │ ├── avatar-20.jpg │ │ │ ├── avatar-21.jpg │ │ │ ├── avatar-22.jpg │ │ │ ├── avatar-24.jpg │ │ │ ├── avatar-25.jpg │ │ │ ├── avatar-26.jpg │ │ │ ├── avatar-28.jpg │ │ │ └── avatar-29.jpg │ │ ├── user.jpg │ │ └── video-call.jpg │ │ ├── js │ │ ├── Chart.min.js │ │ ├── app.js │ │ ├── bootstrap-datetimepicker.min.js │ │ ├── bootstrap.min.js │ │ ├── chart.js │ │ ├── dataTables.bootstrap4.min.js │ │ ├── dropfiles.js │ │ ├── fullcalendar.min.js │ │ ├── jquery-3.5.1.min.js │ │ ├── jquery.dataTables.min.js │ │ ├── jquery.fullcalendar.js │ │ ├── jquery.maskedinput.min.js │ │ ├── jquery.slimscroll.min.js │ │ ├── jquery.ui.touch-punch.min.js │ │ ├── line-chart.js │ │ ├── mask.js │ │ ├── moment.min.js │ │ ├── multiselect.min.js │ │ ├── popper.min.js │ │ ├── select2.min.js │ │ └── task.js │ │ └── plugins │ │ ├── bootstrap-tagsinput │ │ ├── bootstrap-tagsinput.css │ │ └── bootstrap-tagsinput.min.js │ │ ├── morris │ │ ├── morris.css │ │ └── morris.min.js │ │ ├── raphael │ │ └── raphael.min.js │ │ ├── sticky-kit-master │ │ └── dist │ │ │ └── sticky-kit.min.js │ │ └── summernote │ │ └── dist │ │ ├── font │ │ ├── summernote.eot │ │ ├── summernote.ttf │ │ └── summernote.woff │ │ ├── summernote-bs4.css │ │ └── summernote-bs4.min.js ├── js │ └── app.js ├── mix-manifest.json └── robots.txt ├── resources ├── css │ └── app.css ├── js │ └── app.js ├── lang │ ├── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── vendor │ │ └── tables │ │ ├── ar │ │ └── table.php │ │ ├── ca │ │ └── table.php │ │ ├── cs │ │ └── table.php │ │ ├── da │ │ └── table.php │ │ ├── de │ │ └── table.php │ │ ├── en │ │ └── table.php │ │ ├── es │ │ └── table.php │ │ ├── fa │ │ └── table.php │ │ ├── fr │ │ └── table.php │ │ ├── hi │ │ └── table.php │ │ ├── id │ │ └── table.php │ │ ├── it │ │ └── table.php │ │ ├── ka │ │ └── table.php │ │ ├── ku │ │ └── table.php │ │ ├── nl │ │ └── table.php │ │ ├── pl │ │ └── table.php │ │ ├── pt_BR │ │ └── table.php │ │ ├── pt_PT │ │ └── table.php │ │ ├── ru │ │ └── table.php │ │ ├── sv │ │ └── table.php │ │ ├── tr │ │ └── table.php │ │ ├── vi │ │ └── table.php │ │ └── zh_CN │ │ └── table.php ├── sass │ ├── _variables.scss │ └── app.scss └── views │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── confirm.blade.php │ │ ├── email.blade.php │ │ └── reset.blade.php │ ├── register.blade.php │ └── verify.blade.php │ ├── home.blade.php │ ├── layouts │ ├── app.blade copy.php │ ├── app.blade.php │ ├── auth.blade.php │ ├── navigation.blade.php │ └── sidebar.blade.php │ ├── page-header.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── stubs ├── cast.stub ├── console.stub ├── controller.api.stub ├── controller.invokable.stub ├── controller.model.api.stub ├── controller.model.stub ├── controller.nested.api.stub ├── controller.nested.stub ├── controller.plain.stub ├── controller.stub ├── event.stub ├── factory.stub ├── job.queued.stub ├── job.stub ├── livewire.table.blade.view.stub ├── livewire.table.component.stub ├── livewire.table.routes.stub ├── livewire.table.users.view.stub ├── livewire.table.view.stub ├── mail.stub ├── markdown-mail.stub ├── markdown-notification.stub ├── middleware.stub ├── migration.create.stub ├── migration.stub ├── migration.update.stub ├── model.pivot.stub ├── model.stub ├── notification.stub ├── observer.plain.stub ├── observer.stub ├── policy.plain.stub ├── policy.stub ├── provider.stub ├── request.stub ├── resource-collection.stub ├── resource.stub ├── rule.stub ├── scope.stub ├── seeder.stub ├── test.stub ├── test.unit.stub └── view-component.stub ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/.styleci.yml -------------------------------------------------------------------------------- /Admin_Html_Dashboard/activities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/activities.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/applied-jobs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/applied-jobs.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/approval-setting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/approval-setting.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/apptitude-result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/apptitude-result.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/archived-jobs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/archived-jobs.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/css/font-awesome.min.css -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/css/fullcalendar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/css/fullcalendar.min.css -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/css/line-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/css/line-awesome.min.css -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/css/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/css/select2.min.css -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/css/style.css -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/fonts/la-brands-400-1.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/fonts/la-brands-400-1.eot -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/fonts/la-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/fonts/la-brands-400.eot -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/fonts/la-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/fonts/la-brands-400.svg -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/fonts/la-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/fonts/la-brands-400.ttf -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/fonts/la-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/fonts/la-brands-400.woff -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/fonts/la-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/fonts/la-brands-400.woff2 -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/fonts/la-regular-400-1.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/fonts/la-regular-400-1.eot -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/fonts/la-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/fonts/la-regular-400.eot -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/fonts/la-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/fonts/la-regular-400.svg -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/fonts/la-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/fonts/la-regular-400.ttf -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/fonts/la-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/fonts/la-regular-400.woff -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/fonts/la-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/fonts/la-regular-400.woff2 -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/fonts/la-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/fonts/la-solid-900.eot -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/fonts/la-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/fonts/la-solid-900.svg -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/fonts/la-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/fonts/la-solid-900.woff -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/img/attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/img/attachment.png -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/img/favicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/img/favicon.jpg -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/img/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/img/flags/de.png -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/img/flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/img/flags/es.png -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/img/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/img/flags/fr.png -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/img/flags/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/img/flags/us.png -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/img/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/img/logo.jpg -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/img/logo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/img/logo2.jpg -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/img/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/img/placeholder.jpg -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/img/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/img/user.jpg -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/img/video-call.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/img/video-call.jpg -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/js/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/js/Chart.min.js -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/js/app.js -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/js/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/js/chart.js -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/js/dropfiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/js/dropfiles.js -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/js/fullcalendar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/js/fullcalendar.min.js -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/js/jquery-3.5.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/js/jquery-3.5.1.min.js -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/js/line-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/js/line-chart.js -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/js/mask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/js/mask.js -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/js/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/js/moment.min.js -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/js/multiselect.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/js/multiselect.min.js -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/js/popper.min.js -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/js/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/js/select2.min.js -------------------------------------------------------------------------------- /Admin_Html_Dashboard/assets/js/task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/assets/js/task.js -------------------------------------------------------------------------------- /Admin_Html_Dashboard/attendance-employee.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/attendance-employee.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/attendance-reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/attendance-reports.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/attendance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/attendance.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/blank-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/blank-page.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/budget-expenses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/budget-expenses.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/budget-revenues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/budget-revenues.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/budgets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/budgets.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/candidates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/candidates.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/categories.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/change-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/change-password.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/chat.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/client-profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/client-profile.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/clients-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/clients-list.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/clients.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/clients.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/components.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/compose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/compose.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/contacts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/contacts.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/create-estimate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/create-estimate.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/create-invoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/create-invoice.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/cron-setting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/cron-setting.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/daily-reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/daily-reports.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/data-tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/data-tables.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/departments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/departments.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/designations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/designations.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/edit-estimate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/edit-estimate.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/edit-invoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/edit-invoice.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/email-settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/email-settings.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/employee-dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/employee-dashboard.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/employee-reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/employee-reports.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/employees-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/employees-list.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/employees.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/employees.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/error-404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/error-404.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/error-500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/error-500.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/estimate-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/estimate-view.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/estimates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/estimates.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/events.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/expense-reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/expense-reports.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/expenses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/expenses.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/experiance-level.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/experiance-level.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/faq.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/file-manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/file-manager.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/forgot-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/forgot-password.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/form-basic-inputs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/form-basic-inputs.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/form-horizontal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/form-horizontal.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/form-input-groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/form-input-groups.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/form-mask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/form-mask.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/form-validation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/form-validation.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/form-vertical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/form-vertical.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/goal-tracking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/goal-tracking.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/goal-type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/goal-type.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/holidays.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/holidays.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/inbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/inbox.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/incoming-call.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/incoming-call.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/index.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/interview-questions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/interview-questions.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/interviewing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/interviewing.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/invoice-reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/invoice-reports.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/invoice-settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/invoice-settings.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/invoice-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/invoice-view.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/invoices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/invoices.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/job-applicants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/job-applicants.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/job-aptitude.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/job-aptitude.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/job-details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/job-details.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/job-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/job-list.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/job-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/job-view.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/jobs-dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/jobs-dashboard.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/jobs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/jobs.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/knowledgebase-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/knowledgebase-view.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/knowledgebase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/knowledgebase.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/leads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/leads.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/leave-reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/leave-reports.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/leave-settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/leave-settings.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/leave-type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/leave-type.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/leaves-employee.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/leaves-employee.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/leaves.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/leaves.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/localization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/localization.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/lock-screen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/lock-screen.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/login.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/manage-resumes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/manage-resumes.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/notifications-settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/notifications-settings.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/offer_approvals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/offer_approvals.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/offered-jobs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/offered-jobs.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/otp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/otp.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/outgoing-call.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/outgoing-call.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/overtime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/overtime.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/payments-reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/payments-reports.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/payments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/payments.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/payroll-items.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/payroll-items.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/payslip-reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/payslip-reports.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/performance-appraisal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/performance-appraisal.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/performance-indicator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/performance-indicator.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/performance-setting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/performance-setting.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/performance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/performance.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/policies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/policies.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/privacy-policy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/privacy-policy.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/profile.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/project-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/project-list.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/project-reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/project-reports.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/project-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/project-view.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/projects.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/promotion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/promotion.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/provident-fund.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/provident-fund.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/questions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/questions.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/register.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/resignation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/resignation.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/roles-permissions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/roles-permissions.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/salary-settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/salary-settings.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/salary-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/salary-view.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/salary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/salary.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/saved-jobs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/saved-jobs.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/schedule-timing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/schedule-timing.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/search.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/settings.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/shift-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/shift-list.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/shift-scheduling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/shift-scheduling.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/shortlist-candidates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/shortlist-candidates.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/sub-category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/sub-category.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/subscribed-companies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/subscribed-companies.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/subscriptions-company.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/subscriptions-company.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/subscriptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/subscriptions.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/tables-basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/tables-basic.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/task-board.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/task-board.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/task-reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/task-reports.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/tasks.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/taxes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/taxes.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/termination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/termination.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/terms.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/theme-settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/theme-settings.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/ticket-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/ticket-view.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/tickets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/tickets.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/timesheet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/timesheet.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/toxbox-setting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/toxbox-setting.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/trainers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/trainers.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/training-type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/training-type.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/training.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/training.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/user-all-jobs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/user-all-jobs.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/user-dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/user-dashboard.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/user-reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/user-reports.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/users.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/video-call.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/video-call.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/visited-jobs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/visited-jobs.html -------------------------------------------------------------------------------- /Admin_Html_Dashboard/voice-call.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/Admin_Html_Dashboard/voice-call.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/AdviceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/AdviceController.php -------------------------------------------------------------------------------- /app/Http/Controllers/AllergyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/AllergyController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/BedController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/BedController.php -------------------------------------------------------------------------------- /app/Http/Controllers/BedTypeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/BedTypeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/BillingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/BillingController.php -------------------------------------------------------------------------------- /app/Http/Controllers/BillingInvoiceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/BillingInvoiceController.php -------------------------------------------------------------------------------- /app/Http/Controllers/BloodBankController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/BloodBankController.php -------------------------------------------------------------------------------- /app/Http/Controllers/BloodDonorController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/BloodDonorController.php -------------------------------------------------------------------------------- /app/Http/Controllers/BloodRequestController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/BloodRequestController.php -------------------------------------------------------------------------------- /app/Http/Controllers/BloodStockController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/BloodStockController.php -------------------------------------------------------------------------------- /app/Http/Controllers/BloodStockDetailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/BloodStockDetailController.php -------------------------------------------------------------------------------- /app/Http/Controllers/BranchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/BranchController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ChequeDetailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/ChequeDetailController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/DepartmentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/DepartmentController.php -------------------------------------------------------------------------------- /app/Http/Controllers/DiagnoseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/DiagnoseController.php -------------------------------------------------------------------------------- /app/Http/Controllers/DoctorController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/DoctorController.php -------------------------------------------------------------------------------- /app/Http/Controllers/DoctorOrderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/DoctorOrderController.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/HospitalSettingsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/HospitalSettingsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ImmunizationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/ImmunizationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/InvestigationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/InvestigationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/LabTestController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/LabTestController.php -------------------------------------------------------------------------------- /app/Http/Controllers/LaboratoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/LaboratoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/LaborotoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/LaborotoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/MedicineCategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/MedicineCategoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/MedicineController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/MedicineController.php -------------------------------------------------------------------------------- /app/Http/Controllers/MedicineTypeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/MedicineTypeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/NurseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/NurseController.php -------------------------------------------------------------------------------- /app/Http/Controllers/OperationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/OperationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/OperationTypeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/OperationTypeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PatientController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/PatientController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PatientRecordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/PatientRecordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PatientVisitController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/PatientVisitController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PharmacyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/PharmacyController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PharmacyInvoiceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/PharmacyInvoiceController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PrescriptionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/PrescriptionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PurchaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/PurchaseController.php -------------------------------------------------------------------------------- /app/Http/Controllers/RoomController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/RoomController.php -------------------------------------------------------------------------------- /app/Http/Controllers/RoomTypeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/RoomTypeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/SampleCollectionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/SampleCollectionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ScheduleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/ScheduleController.php -------------------------------------------------------------------------------- /app/Http/Controllers/SpecialistController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/SpecialistController.php -------------------------------------------------------------------------------- /app/Http/Controllers/SupplierController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/SupplierController.php -------------------------------------------------------------------------------- /app/Http/Controllers/TestTypeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/TestTypeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/UserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/VitalController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/VitalController.php -------------------------------------------------------------------------------- /app/Http/Controllers/WardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Controllers/WardController.php -------------------------------------------------------------------------------- /app/Http/Jambasangsang/Traits/createable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Jambasangsang/Traits/createable.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreAdviceRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreAdviceRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreAllergyRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreAllergyRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreBedRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreBedRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreBedTypeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreBedTypeRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreBillingInvoiceRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreBillingInvoiceRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreBillingRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreBillingRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreBloodBankRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreBloodBankRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreBloodDonorRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreBloodDonorRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreBloodRequestRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreBloodRequestRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreBloodStockDetailRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreBloodStockDetailRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreBloodStockRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreBloodStockRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreBranchRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreBranchRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreChequeDetailRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreChequeDetailRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreDepartmentRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreDepartmentRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreDiagnoseRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreDiagnoseRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreDoctorOrderRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreDoctorOrderRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreDoctorRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreDoctorRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreHospitalSettingsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreHospitalSettingsRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreImmunizationRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreImmunizationRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreInvestigationRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreInvestigationRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreLabTestRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreLabTestRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreLaboratoryRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreLaboratoryRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreLaborotoryRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreLaborotoryRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreMedicineCategoryRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreMedicineCategoryRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreMedicineRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreMedicineRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreMedicineTypeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreMedicineTypeRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreNurseRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreNurseRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreOperationTypeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreOperationTypeRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StorePatientRecordRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StorePatientRecordRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StorePatientRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StorePatientRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StorePatientVisitRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StorePatientVisitRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StorePharmacyInvoiceRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StorePharmacyInvoiceRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StorePharmacyRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StorePharmacyRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StorePrescriptionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StorePrescriptionRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StorePurchaseRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StorePurchaseRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreRoomRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreRoomRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreRoomTypeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreRoomTypeRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreSampleCollectionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreSampleCollectionRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreScheduleRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreScheduleRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreSpecialistRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreSpecialistRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreSupplierRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreSupplierRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreTestTypeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreTestTypeRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreVitalRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreVitalRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreWardRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreWardRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreoperationRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/StoreoperationRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateAdviceRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateAdviceRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateAllergyRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateAllergyRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateBedRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateBedRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateBedTypeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateBedTypeRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateBillingInvoiceRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateBillingInvoiceRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateBillingRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateBillingRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateBloodBankRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateBloodBankRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateBloodDonorRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateBloodDonorRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateBloodRequestRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateBloodRequestRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateBloodStockDetailRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateBloodStockDetailRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateBloodStockRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateBloodStockRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateBranchRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateBranchRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateChequeDetailRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateChequeDetailRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateDepartmentRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateDepartmentRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateDiagnoseRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateDiagnoseRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateDoctorOrderRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateDoctorOrderRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateDoctorRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateDoctorRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateHospitalSettingsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateHospitalSettingsRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateImmunizationRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateImmunizationRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateInvestigationRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateInvestigationRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateLabTestRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateLabTestRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateLaboratoryRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateLaboratoryRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateLaborotoryRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateLaborotoryRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateMedicineCategoryRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateMedicineCategoryRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateMedicineRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateMedicineRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateMedicineTypeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateMedicineTypeRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateNurseRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateNurseRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateOperationTypeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateOperationTypeRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdatePatientRecordRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdatePatientRecordRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdatePatientRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdatePatientRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdatePatientVisitRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdatePatientVisitRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdatePharmacyInvoiceRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdatePharmacyInvoiceRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdatePharmacyRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdatePharmacyRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdatePrescriptionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdatePrescriptionRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdatePurchaseRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdatePurchaseRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateRoomRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateRoomRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateRoomTypeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateRoomTypeRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateSampleCollectionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateSampleCollectionRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateScheduleRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateScheduleRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateSpecialistRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateSpecialistRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateSupplierRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateSupplierRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateTestTypeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateTestTypeRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateVitalRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateVitalRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateWardRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateWardRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateoperationRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Http/Requests/UpdateoperationRequest.php -------------------------------------------------------------------------------- /app/Jambasangsang/constant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Jambasangsang/constant.php -------------------------------------------------------------------------------- /app/Jambasangsang/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Jambasangsang/helper.php -------------------------------------------------------------------------------- /app/Models/Advice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/Advice.php -------------------------------------------------------------------------------- /app/Models/Allergy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/Allergy.php -------------------------------------------------------------------------------- /app/Models/Bed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/Bed.php -------------------------------------------------------------------------------- /app/Models/BedType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/BedType.php -------------------------------------------------------------------------------- /app/Models/Billing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/Billing.php -------------------------------------------------------------------------------- /app/Models/BillingInvoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/BillingInvoice.php -------------------------------------------------------------------------------- /app/Models/BillingInvoiceDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/BillingInvoiceDetail.php -------------------------------------------------------------------------------- /app/Models/BillingTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/BillingTransaction.php -------------------------------------------------------------------------------- /app/Models/BloodBank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/BloodBank.php -------------------------------------------------------------------------------- /app/Models/BloodDonor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/BloodDonor.php -------------------------------------------------------------------------------- /app/Models/BloodRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/BloodRequest.php -------------------------------------------------------------------------------- /app/Models/BloodStock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/BloodStock.php -------------------------------------------------------------------------------- /app/Models/BloodStockDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/BloodStockDetail.php -------------------------------------------------------------------------------- /app/Models/Branch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/Branch.php -------------------------------------------------------------------------------- /app/Models/ChequeDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/ChequeDetail.php -------------------------------------------------------------------------------- /app/Models/Department.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/Department.php -------------------------------------------------------------------------------- /app/Models/Diagnose.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/Diagnose.php -------------------------------------------------------------------------------- /app/Models/Doctor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/Doctor.php -------------------------------------------------------------------------------- /app/Models/DoctorOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/DoctorOrder.php -------------------------------------------------------------------------------- /app/Models/HospitalSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/HospitalSetting.php -------------------------------------------------------------------------------- /app/Models/Immunization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/Immunization.php -------------------------------------------------------------------------------- /app/Models/Investigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/Investigation.php -------------------------------------------------------------------------------- /app/Models/LabTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/LabTest.php -------------------------------------------------------------------------------- /app/Models/Laboratory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/Laboratory.php -------------------------------------------------------------------------------- /app/Models/MedicalCertificate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/MedicalCertificate.php -------------------------------------------------------------------------------- /app/Models/Medicine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/Medicine.php -------------------------------------------------------------------------------- /app/Models/MedicineCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/MedicineCategory.php -------------------------------------------------------------------------------- /app/Models/MedicineType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/MedicineType.php -------------------------------------------------------------------------------- /app/Models/Nurse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/Nurse.php -------------------------------------------------------------------------------- /app/Models/OperationType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/OperationType.php -------------------------------------------------------------------------------- /app/Models/Patient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/Patient.php -------------------------------------------------------------------------------- /app/Models/PatientRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/PatientRecord.php -------------------------------------------------------------------------------- /app/Models/PatientVisit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/PatientVisit.php -------------------------------------------------------------------------------- /app/Models/Pharmacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/Pharmacy.php -------------------------------------------------------------------------------- /app/Models/PharmacyInvoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/PharmacyInvoice.php -------------------------------------------------------------------------------- /app/Models/Prescription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/Prescription.php -------------------------------------------------------------------------------- /app/Models/PresentingComplain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/PresentingComplain.php -------------------------------------------------------------------------------- /app/Models/Purchase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/Purchase.php -------------------------------------------------------------------------------- /app/Models/Room.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/Room.php -------------------------------------------------------------------------------- /app/Models/RoomType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/RoomType.php -------------------------------------------------------------------------------- /app/Models/SampleCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/SampleCollection.php -------------------------------------------------------------------------------- /app/Models/Schedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/Schedule.php -------------------------------------------------------------------------------- /app/Models/Specialist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/Specialist.php -------------------------------------------------------------------------------- /app/Models/Supplier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/Supplier.php -------------------------------------------------------------------------------- /app/Models/TestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/TestType.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/Vital.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/Vital.php -------------------------------------------------------------------------------- /app/Models/Ward.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/Ward.php -------------------------------------------------------------------------------- /app/Models/operation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Models/operation.php -------------------------------------------------------------------------------- /app/Policies/AdvicePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/AdvicePolicy.php -------------------------------------------------------------------------------- /app/Policies/AllergyPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/AllergyPolicy.php -------------------------------------------------------------------------------- /app/Policies/BedPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/BedPolicy.php -------------------------------------------------------------------------------- /app/Policies/BedTypePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/BedTypePolicy.php -------------------------------------------------------------------------------- /app/Policies/BillingInvoiceDetailPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/BillingInvoiceDetailPolicy.php -------------------------------------------------------------------------------- /app/Policies/BillingInvoicePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/BillingInvoicePolicy.php -------------------------------------------------------------------------------- /app/Policies/BillingPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/BillingPolicy.php -------------------------------------------------------------------------------- /app/Policies/BillingTransactionPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/BillingTransactionPolicy.php -------------------------------------------------------------------------------- /app/Policies/BloodBankPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/BloodBankPolicy.php -------------------------------------------------------------------------------- /app/Policies/BloodDonorPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/BloodDonorPolicy.php -------------------------------------------------------------------------------- /app/Policies/BloodRequestPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/BloodRequestPolicy.php -------------------------------------------------------------------------------- /app/Policies/BloodStockDetailPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/BloodStockDetailPolicy.php -------------------------------------------------------------------------------- /app/Policies/BloodStockPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/BloodStockPolicy.php -------------------------------------------------------------------------------- /app/Policies/BranchPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/BranchPolicy.php -------------------------------------------------------------------------------- /app/Policies/ChequeDetailPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/ChequeDetailPolicy.php -------------------------------------------------------------------------------- /app/Policies/DepartmentPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/DepartmentPolicy.php -------------------------------------------------------------------------------- /app/Policies/DiagnosePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/DiagnosePolicy.php -------------------------------------------------------------------------------- /app/Policies/DoctorOrderPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/DoctorOrderPolicy.php -------------------------------------------------------------------------------- /app/Policies/DoctorPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/DoctorPolicy.php -------------------------------------------------------------------------------- /app/Policies/HospitalSettingsPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/HospitalSettingsPolicy.php -------------------------------------------------------------------------------- /app/Policies/ImmunizationPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/ImmunizationPolicy.php -------------------------------------------------------------------------------- /app/Policies/InvestigationPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/InvestigationPolicy.php -------------------------------------------------------------------------------- /app/Policies/LabTestPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/LabTestPolicy.php -------------------------------------------------------------------------------- /app/Policies/LaboratoryPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/LaboratoryPolicy.php -------------------------------------------------------------------------------- /app/Policies/LaborotoryPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/LaborotoryPolicy.php -------------------------------------------------------------------------------- /app/Policies/MedicalCertificatePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/MedicalCertificatePolicy.php -------------------------------------------------------------------------------- /app/Policies/MedicineCategoryPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/MedicineCategoryPolicy.php -------------------------------------------------------------------------------- /app/Policies/MedicinePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/MedicinePolicy.php -------------------------------------------------------------------------------- /app/Policies/MedicineTypePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/MedicineTypePolicy.php -------------------------------------------------------------------------------- /app/Policies/NursePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/NursePolicy.php -------------------------------------------------------------------------------- /app/Policies/OperationPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/OperationPolicy.php -------------------------------------------------------------------------------- /app/Policies/OperationTypePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/OperationTypePolicy.php -------------------------------------------------------------------------------- /app/Policies/PatientPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/PatientPolicy.php -------------------------------------------------------------------------------- /app/Policies/PatientRecordPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/PatientRecordPolicy.php -------------------------------------------------------------------------------- /app/Policies/PatientVisitPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/PatientVisitPolicy.php -------------------------------------------------------------------------------- /app/Policies/PharmacyInvoicePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/PharmacyInvoicePolicy.php -------------------------------------------------------------------------------- /app/Policies/PharmacyPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/PharmacyPolicy.php -------------------------------------------------------------------------------- /app/Policies/PrescriptionPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/PrescriptionPolicy.php -------------------------------------------------------------------------------- /app/Policies/PresentingComplainPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/PresentingComplainPolicy.php -------------------------------------------------------------------------------- /app/Policies/PurchasePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/PurchasePolicy.php -------------------------------------------------------------------------------- /app/Policies/RoomPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/RoomPolicy.php -------------------------------------------------------------------------------- /app/Policies/RoomTypePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/RoomTypePolicy.php -------------------------------------------------------------------------------- /app/Policies/SampleCollectionPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/SampleCollectionPolicy.php -------------------------------------------------------------------------------- /app/Policies/SchedulePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/SchedulePolicy.php -------------------------------------------------------------------------------- /app/Policies/SpecialistPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/SpecialistPolicy.php -------------------------------------------------------------------------------- /app/Policies/SupplierPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/SupplierPolicy.php -------------------------------------------------------------------------------- /app/Policies/TestTypePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/TestTypePolicy.php -------------------------------------------------------------------------------- /app/Policies/VitalPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/VitalPolicy.php -------------------------------------------------------------------------------- /app/Policies/WardPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Policies/WardPolicy.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/config/permission.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/AdviceFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/AdviceFactory.php -------------------------------------------------------------------------------- /database/factories/AllergyFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/AllergyFactory.php -------------------------------------------------------------------------------- /database/factories/BedFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/BedFactory.php -------------------------------------------------------------------------------- /database/factories/BedTypeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/BedTypeFactory.php -------------------------------------------------------------------------------- /database/factories/BillingFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/BillingFactory.php -------------------------------------------------------------------------------- /database/factories/BillingInvoiceDetailFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/BillingInvoiceDetailFactory.php -------------------------------------------------------------------------------- /database/factories/BillingInvoiceFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/BillingInvoiceFactory.php -------------------------------------------------------------------------------- /database/factories/BillingTransactionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/BillingTransactionFactory.php -------------------------------------------------------------------------------- /database/factories/BloodBankFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/BloodBankFactory.php -------------------------------------------------------------------------------- /database/factories/BloodDonorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/BloodDonorFactory.php -------------------------------------------------------------------------------- /database/factories/BloodRequestFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/BloodRequestFactory.php -------------------------------------------------------------------------------- /database/factories/BloodStockDetailFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/BloodStockDetailFactory.php -------------------------------------------------------------------------------- /database/factories/BloodStockFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/BloodStockFactory.php -------------------------------------------------------------------------------- /database/factories/BranchFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/BranchFactory.php -------------------------------------------------------------------------------- /database/factories/ChequeDetailFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/ChequeDetailFactory.php -------------------------------------------------------------------------------- /database/factories/DepartmentFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/DepartmentFactory.php -------------------------------------------------------------------------------- /database/factories/DiagnoseFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/DiagnoseFactory.php -------------------------------------------------------------------------------- /database/factories/DoctorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/DoctorFactory.php -------------------------------------------------------------------------------- /database/factories/DoctorOrderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/DoctorOrderFactory.php -------------------------------------------------------------------------------- /database/factories/HospitalSettingFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/HospitalSettingFactory.php -------------------------------------------------------------------------------- /database/factories/ImmunizationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/ImmunizationFactory.php -------------------------------------------------------------------------------- /database/factories/InvestigationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/InvestigationFactory.php -------------------------------------------------------------------------------- /database/factories/LabTestFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/LabTestFactory.php -------------------------------------------------------------------------------- /database/factories/LaboratoryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/LaboratoryFactory.php -------------------------------------------------------------------------------- /database/factories/LaborotoryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/LaborotoryFactory.php -------------------------------------------------------------------------------- /database/factories/MedicalCertificateFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/MedicalCertificateFactory.php -------------------------------------------------------------------------------- /database/factories/MedicineCategoryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/MedicineCategoryFactory.php -------------------------------------------------------------------------------- /database/factories/MedicineFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/MedicineFactory.php -------------------------------------------------------------------------------- /database/factories/MedicineTypeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/MedicineTypeFactory.php -------------------------------------------------------------------------------- /database/factories/NurseFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/NurseFactory.php -------------------------------------------------------------------------------- /database/factories/OperationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/OperationFactory.php -------------------------------------------------------------------------------- /database/factories/OperationTypeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/OperationTypeFactory.php -------------------------------------------------------------------------------- /database/factories/PatientFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/PatientFactory.php -------------------------------------------------------------------------------- /database/factories/PatientRecordFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/PatientRecordFactory.php -------------------------------------------------------------------------------- /database/factories/PatientVisitFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/PatientVisitFactory.php -------------------------------------------------------------------------------- /database/factories/PharmacyFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/PharmacyFactory.php -------------------------------------------------------------------------------- /database/factories/PharmacyInvoiceFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/PharmacyInvoiceFactory.php -------------------------------------------------------------------------------- /database/factories/PrescriptionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/PrescriptionFactory.php -------------------------------------------------------------------------------- /database/factories/PresentingComplainFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/PresentingComplainFactory.php -------------------------------------------------------------------------------- /database/factories/PurchaseFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/PurchaseFactory.php -------------------------------------------------------------------------------- /database/factories/RoomFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/RoomFactory.php -------------------------------------------------------------------------------- /database/factories/RoomTypeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/RoomTypeFactory.php -------------------------------------------------------------------------------- /database/factories/SampleCollectionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/SampleCollectionFactory.php -------------------------------------------------------------------------------- /database/factories/ScheduleFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/ScheduleFactory.php -------------------------------------------------------------------------------- /database/factories/SpecialistFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/SpecialistFactory.php -------------------------------------------------------------------------------- /database/factories/SupplierFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/SupplierFactory.php -------------------------------------------------------------------------------- /database/factories/TestTypeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/TestTypeFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/factories/VitalFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/VitalFactory.php -------------------------------------------------------------------------------- /database/factories/WardFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/factories/WardFactory.php -------------------------------------------------------------------------------- /database/seeders/AdviceSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/AdviceSeeder.php -------------------------------------------------------------------------------- /database/seeders/AllergySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/AllergySeeder.php -------------------------------------------------------------------------------- /database/seeders/BedSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/BedSeeder.php -------------------------------------------------------------------------------- /database/seeders/BedTypeSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/BedTypeSeeder.php -------------------------------------------------------------------------------- /database/seeders/BillingInvoiceDetailSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/BillingInvoiceDetailSeeder.php -------------------------------------------------------------------------------- /database/seeders/BillingInvoiceSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/BillingInvoiceSeeder.php -------------------------------------------------------------------------------- /database/seeders/BillingSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/BillingSeeder.php -------------------------------------------------------------------------------- /database/seeders/BillingTransactionSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/BillingTransactionSeeder.php -------------------------------------------------------------------------------- /database/seeders/BloodBankSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/BloodBankSeeder.php -------------------------------------------------------------------------------- /database/seeders/BloodDonorSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/BloodDonorSeeder.php -------------------------------------------------------------------------------- /database/seeders/BloodRequestSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/BloodRequestSeeder.php -------------------------------------------------------------------------------- /database/seeders/BloodStockDetailSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/BloodStockDetailSeeder.php -------------------------------------------------------------------------------- /database/seeders/BloodStockSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/BloodStockSeeder.php -------------------------------------------------------------------------------- /database/seeders/BranchSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/BranchSeeder.php -------------------------------------------------------------------------------- /database/seeders/ChequeDetailSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/ChequeDetailSeeder.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/DepartmentSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/DepartmentSeeder.php -------------------------------------------------------------------------------- /database/seeders/DiagnoseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/DiagnoseSeeder.php -------------------------------------------------------------------------------- /database/seeders/DoctorOrderSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/DoctorOrderSeeder.php -------------------------------------------------------------------------------- /database/seeders/DoctorSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/DoctorSeeder.php -------------------------------------------------------------------------------- /database/seeders/HospitalSettingSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/HospitalSettingSeeder.php -------------------------------------------------------------------------------- /database/seeders/ImmunizationSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/ImmunizationSeeder.php -------------------------------------------------------------------------------- /database/seeders/InvestigationSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/InvestigationSeeder.php -------------------------------------------------------------------------------- /database/seeders/LabTestSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/LabTestSeeder.php -------------------------------------------------------------------------------- /database/seeders/LaboratorySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/LaboratorySeeder.php -------------------------------------------------------------------------------- /database/seeders/LaborotorySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/LaborotorySeeder.php -------------------------------------------------------------------------------- /database/seeders/MedicalCertificateSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/MedicalCertificateSeeder.php -------------------------------------------------------------------------------- /database/seeders/MedicineCategorySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/MedicineCategorySeeder.php -------------------------------------------------------------------------------- /database/seeders/MedicineSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/MedicineSeeder.php -------------------------------------------------------------------------------- /database/seeders/MedicineTypeSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/MedicineTypeSeeder.php -------------------------------------------------------------------------------- /database/seeders/NurseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/NurseSeeder.php -------------------------------------------------------------------------------- /database/seeders/OperationSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/OperationSeeder.php -------------------------------------------------------------------------------- /database/seeders/OperationTypeSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/OperationTypeSeeder.php -------------------------------------------------------------------------------- /database/seeders/PatientRecordSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/PatientRecordSeeder.php -------------------------------------------------------------------------------- /database/seeders/PatientSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/PatientSeeder.php -------------------------------------------------------------------------------- /database/seeders/PatientVisitSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/PatientVisitSeeder.php -------------------------------------------------------------------------------- /database/seeders/PermissionSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/PermissionSeeder.php -------------------------------------------------------------------------------- /database/seeders/PharmacyInvoiceSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/PharmacyInvoiceSeeder.php -------------------------------------------------------------------------------- /database/seeders/PharmacySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/PharmacySeeder.php -------------------------------------------------------------------------------- /database/seeders/PrescriptionSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/PrescriptionSeeder.php -------------------------------------------------------------------------------- /database/seeders/PresentingComplainSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/PresentingComplainSeeder.php -------------------------------------------------------------------------------- /database/seeders/PurchaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/PurchaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/RolesAndPermissionsSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/RolesAndPermissionsSeeder.php -------------------------------------------------------------------------------- /database/seeders/RoomSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/RoomSeeder.php -------------------------------------------------------------------------------- /database/seeders/RoomTypeSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/RoomTypeSeeder.php -------------------------------------------------------------------------------- /database/seeders/SampleCollectionSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/SampleCollectionSeeder.php -------------------------------------------------------------------------------- /database/seeders/ScheduleSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/ScheduleSeeder.php -------------------------------------------------------------------------------- /database/seeders/SpecialistSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/SpecialistSeeder.php -------------------------------------------------------------------------------- /database/seeders/SupplierSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/SupplierSeeder.php -------------------------------------------------------------------------------- /database/seeders/TestTypeSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/TestTypeSeeder.php -------------------------------------------------------------------------------- /database/seeders/UsersTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/UsersTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/VitalSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/VitalSeeder.php -------------------------------------------------------------------------------- /database/seeders/WardSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/database/seeders/WardSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/index.php -------------------------------------------------------------------------------- /public/jambasangsang/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/css/app.css -------------------------------------------------------------------------------- /public/jambasangsang/assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /public/jambasangsang/assets/css/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/css/select2.min.css -------------------------------------------------------------------------------- /public/jambasangsang/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/css/style.css -------------------------------------------------------------------------------- /public/jambasangsang/assets/fonts/la-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/fonts/la-brands-400.eot -------------------------------------------------------------------------------- /public/jambasangsang/assets/fonts/la-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/fonts/la-brands-400.svg -------------------------------------------------------------------------------- /public/jambasangsang/assets/fonts/la-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/fonts/la-brands-400.ttf -------------------------------------------------------------------------------- /public/jambasangsang/assets/fonts/la-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/fonts/la-solid-900.eot -------------------------------------------------------------------------------- /public/jambasangsang/assets/fonts/la-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/fonts/la-solid-900.svg -------------------------------------------------------------------------------- /public/jambasangsang/assets/fonts/la-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/fonts/la-solid-900.woff -------------------------------------------------------------------------------- /public/jambasangsang/assets/img/attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/img/attachment.png -------------------------------------------------------------------------------- /public/jambasangsang/assets/img/favicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/img/favicon.jpg -------------------------------------------------------------------------------- /public/jambasangsang/assets/img/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/img/flags/de.png -------------------------------------------------------------------------------- /public/jambasangsang/assets/img/flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/img/flags/es.png -------------------------------------------------------------------------------- /public/jambasangsang/assets/img/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/img/flags/fr.png -------------------------------------------------------------------------------- /public/jambasangsang/assets/img/flags/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/img/flags/us.png -------------------------------------------------------------------------------- /public/jambasangsang/assets/img/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/img/logo.jpg -------------------------------------------------------------------------------- /public/jambasangsang/assets/img/logo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/img/logo2.jpg -------------------------------------------------------------------------------- /public/jambasangsang/assets/img/no-record-found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/img/no-record-found.png -------------------------------------------------------------------------------- /public/jambasangsang/assets/img/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/img/placeholder.jpg -------------------------------------------------------------------------------- /public/jambasangsang/assets/img/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/img/user.jpg -------------------------------------------------------------------------------- /public/jambasangsang/assets/img/video-call.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/img/video-call.jpg -------------------------------------------------------------------------------- /public/jambasangsang/assets/js/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/js/Chart.min.js -------------------------------------------------------------------------------- /public/jambasangsang/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/js/app.js -------------------------------------------------------------------------------- /public/jambasangsang/assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /public/jambasangsang/assets/js/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/js/chart.js -------------------------------------------------------------------------------- /public/jambasangsang/assets/js/dropfiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/js/dropfiles.js -------------------------------------------------------------------------------- /public/jambasangsang/assets/js/fullcalendar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/js/fullcalendar.min.js -------------------------------------------------------------------------------- /public/jambasangsang/assets/js/jquery-3.5.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/js/jquery-3.5.1.min.js -------------------------------------------------------------------------------- /public/jambasangsang/assets/js/line-chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/js/line-chart.js -------------------------------------------------------------------------------- /public/jambasangsang/assets/js/mask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/js/mask.js -------------------------------------------------------------------------------- /public/jambasangsang/assets/js/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/js/moment.min.js -------------------------------------------------------------------------------- /public/jambasangsang/assets/js/multiselect.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/js/multiselect.min.js -------------------------------------------------------------------------------- /public/jambasangsang/assets/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/js/popper.min.js -------------------------------------------------------------------------------- /public/jambasangsang/assets/js/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/js/select2.min.js -------------------------------------------------------------------------------- /public/jambasangsang/assets/js/task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/jambasangsang/assets/js/task.js -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/lang/vendor/tables/ar/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/lang/vendor/tables/ar/table.php -------------------------------------------------------------------------------- /resources/lang/vendor/tables/ca/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/lang/vendor/tables/ca/table.php -------------------------------------------------------------------------------- /resources/lang/vendor/tables/cs/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/lang/vendor/tables/cs/table.php -------------------------------------------------------------------------------- /resources/lang/vendor/tables/da/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/lang/vendor/tables/da/table.php -------------------------------------------------------------------------------- /resources/lang/vendor/tables/de/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/lang/vendor/tables/de/table.php -------------------------------------------------------------------------------- /resources/lang/vendor/tables/en/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/lang/vendor/tables/en/table.php -------------------------------------------------------------------------------- /resources/lang/vendor/tables/es/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/lang/vendor/tables/es/table.php -------------------------------------------------------------------------------- /resources/lang/vendor/tables/fa/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/lang/vendor/tables/fa/table.php -------------------------------------------------------------------------------- /resources/lang/vendor/tables/fr/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/lang/vendor/tables/fr/table.php -------------------------------------------------------------------------------- /resources/lang/vendor/tables/hi/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/lang/vendor/tables/hi/table.php -------------------------------------------------------------------------------- /resources/lang/vendor/tables/id/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/lang/vendor/tables/id/table.php -------------------------------------------------------------------------------- /resources/lang/vendor/tables/it/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/lang/vendor/tables/it/table.php -------------------------------------------------------------------------------- /resources/lang/vendor/tables/ka/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/lang/vendor/tables/ka/table.php -------------------------------------------------------------------------------- /resources/lang/vendor/tables/ku/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/lang/vendor/tables/ku/table.php -------------------------------------------------------------------------------- /resources/lang/vendor/tables/nl/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/lang/vendor/tables/nl/table.php -------------------------------------------------------------------------------- /resources/lang/vendor/tables/pl/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/lang/vendor/tables/pl/table.php -------------------------------------------------------------------------------- /resources/lang/vendor/tables/pt_BR/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/lang/vendor/tables/pt_BR/table.php -------------------------------------------------------------------------------- /resources/lang/vendor/tables/pt_PT/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/lang/vendor/tables/pt_PT/table.php -------------------------------------------------------------------------------- /resources/lang/vendor/tables/ru/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/lang/vendor/tables/ru/table.php -------------------------------------------------------------------------------- /resources/lang/vendor/tables/sv/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/lang/vendor/tables/sv/table.php -------------------------------------------------------------------------------- /resources/lang/vendor/tables/tr/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/lang/vendor/tables/tr/table.php -------------------------------------------------------------------------------- /resources/lang/vendor/tables/vi/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/lang/vendor/tables/vi/table.php -------------------------------------------------------------------------------- /resources/lang/vendor/tables/zh_CN/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/lang/vendor/tables/zh_CN/table.php -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/sass/_variables.scss -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/sass/app.scss -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/confirm.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/views/auth/passwords/confirm.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/views/auth/passwords/email.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/views/auth/passwords/reset.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/views/auth/verify.blade.php -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade copy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/views/layouts/app.blade copy.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/auth.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/views/layouts/auth.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/navigation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/views/layouts/navigation.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/views/layouts/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/page-header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/views/page-header.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /stubs/cast.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/cast.stub -------------------------------------------------------------------------------- /stubs/console.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/console.stub -------------------------------------------------------------------------------- /stubs/controller.api.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/controller.api.stub -------------------------------------------------------------------------------- /stubs/controller.invokable.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/controller.invokable.stub -------------------------------------------------------------------------------- /stubs/controller.model.api.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/controller.model.api.stub -------------------------------------------------------------------------------- /stubs/controller.model.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/controller.model.stub -------------------------------------------------------------------------------- /stubs/controller.nested.api.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/controller.nested.api.stub -------------------------------------------------------------------------------- /stubs/controller.nested.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/controller.nested.stub -------------------------------------------------------------------------------- /stubs/controller.plain.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/controller.plain.stub -------------------------------------------------------------------------------- /stubs/controller.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/controller.stub -------------------------------------------------------------------------------- /stubs/event.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/event.stub -------------------------------------------------------------------------------- /stubs/factory.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/factory.stub -------------------------------------------------------------------------------- /stubs/job.queued.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/job.queued.stub -------------------------------------------------------------------------------- /stubs/job.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/job.stub -------------------------------------------------------------------------------- /stubs/livewire.table.blade.view.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/livewire.table.blade.view.stub -------------------------------------------------------------------------------- /stubs/livewire.table.component.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/livewire.table.component.stub -------------------------------------------------------------------------------- /stubs/livewire.table.routes.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/livewire.table.routes.stub -------------------------------------------------------------------------------- /stubs/livewire.table.users.view.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/livewire.table.users.view.stub -------------------------------------------------------------------------------- /stubs/livewire.table.view.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/livewire.table.view.stub -------------------------------------------------------------------------------- /stubs/mail.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/mail.stub -------------------------------------------------------------------------------- /stubs/markdown-mail.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/markdown-mail.stub -------------------------------------------------------------------------------- /stubs/markdown-notification.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/markdown-notification.stub -------------------------------------------------------------------------------- /stubs/middleware.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/middleware.stub -------------------------------------------------------------------------------- /stubs/migration.create.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/migration.create.stub -------------------------------------------------------------------------------- /stubs/migration.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/migration.stub -------------------------------------------------------------------------------- /stubs/migration.update.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/migration.update.stub -------------------------------------------------------------------------------- /stubs/model.pivot.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/model.pivot.stub -------------------------------------------------------------------------------- /stubs/model.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/model.stub -------------------------------------------------------------------------------- /stubs/notification.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/notification.stub -------------------------------------------------------------------------------- /stubs/observer.plain.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/observer.plain.stub -------------------------------------------------------------------------------- /stubs/observer.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/observer.stub -------------------------------------------------------------------------------- /stubs/policy.plain.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/policy.plain.stub -------------------------------------------------------------------------------- /stubs/policy.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/policy.stub -------------------------------------------------------------------------------- /stubs/provider.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/provider.stub -------------------------------------------------------------------------------- /stubs/request.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/request.stub -------------------------------------------------------------------------------- /stubs/resource-collection.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/resource-collection.stub -------------------------------------------------------------------------------- /stubs/resource.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/resource.stub -------------------------------------------------------------------------------- /stubs/rule.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/rule.stub -------------------------------------------------------------------------------- /stubs/scope.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/scope.stub -------------------------------------------------------------------------------- /stubs/seeder.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/seeder.stub -------------------------------------------------------------------------------- /stubs/test.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/test.stub -------------------------------------------------------------------------------- /stubs/test.unit.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/test.unit.stub -------------------------------------------------------------------------------- /stubs/view-component.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/stubs/view-component.stub -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhateh/laravel-9-hospital-management-system-step-by-step/HEAD/webpack.mix.js --------------------------------------------------------------------------------