├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .phpactor.json ├── README.md ├── app ├── Console │ └── Kernel.php ├── Enums │ ├── AppointmentStatus.php │ ├── DaysOfTheWeek.php │ └── PetType.php ├── Exceptions │ └── Handler.php ├── Filament │ ├── Doctor │ │ └── Resources │ │ │ ├── AppointmentResource.php │ │ │ ├── AppointmentResource │ │ │ ├── Pages │ │ │ │ ├── CreateAppointment.php │ │ │ │ ├── EditAppointment.php │ │ │ │ └── ListAppointments.php │ │ │ └── RelationManagers │ │ │ │ └── NotesRelationManager.php │ │ │ ├── PetResource.php │ │ │ ├── PetResource │ │ │ └── Pages │ │ │ │ ├── CreatePet.php │ │ │ │ ├── EditPet.php │ │ │ │ └── ListPets.php │ │ │ ├── ScheduleResource.php │ │ │ └── ScheduleResource │ │ │ └── Pages │ │ │ ├── CreateSchedule.php │ │ │ ├── EditSchedule.php │ │ │ └── ListSchedules.php │ ├── Owner │ │ ├── Pages │ │ │ └── Auth │ │ │ │ └── Register.php │ │ └── Resources │ │ │ ├── AppointmentResource.php │ │ │ ├── AppointmentResource │ │ │ └── Pages │ │ │ │ ├── CreateAppointment.php │ │ │ │ ├── EditAppointment.php │ │ │ │ └── ListAppointments.php │ │ │ ├── PetResource.php │ │ │ └── PetResource │ │ │ └── Pages │ │ │ ├── CreatePet.php │ │ │ ├── EditPet.php │ │ │ └── ListPets.php │ ├── Pages │ │ └── Auth │ │ │ └── EditProfile.php │ └── Resources │ │ ├── AppointmentResource.php │ │ ├── AppointmentResource │ │ └── Pages │ │ │ ├── CreateAppointment.php │ │ │ ├── EditAppointment.php │ │ │ └── ListAppointments.php │ │ ├── ClinicResource.php │ │ ├── ClinicResource │ │ └── Pages │ │ │ ├── CreateClinic.php │ │ │ ├── EditClinic.php │ │ │ └── ListClinics.php │ │ ├── PetResource.php │ │ ├── PetResource │ │ └── Pages │ │ │ ├── CreatePet.php │ │ │ ├── EditPet.php │ │ │ └── ListPets.php │ │ ├── ScheduleResource.php │ │ ├── ScheduleResource │ │ └── Pages │ │ │ ├── CreateSchedule.php │ │ │ ├── EditSchedule.php │ │ │ └── ListSchedules.php │ │ ├── UserResource.php │ │ └── UserResource │ │ └── Pages │ │ ├── CreateUser.php │ │ ├── EditUser.php │ │ └── ListUsers.php ├── Http │ ├── Controllers │ │ └── Controller.php │ ├── Kernel.php │ └── Middleware │ │ ├── ApplyTenantScopes.php │ │ ├── AssignGlobalScopes.php │ │ ├── AssignOwnerGlobalScopes.php │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── ValidateSignature.php │ │ └── VerifyCsrfToken.php ├── Models │ ├── Appointment.php │ ├── Clinic.php │ ├── Note.php │ ├── Pet.php │ ├── Role.php │ ├── Schedule.php │ ├── Slot.php │ └── User.php ├── Policies │ ├── ClinicPolicy.php │ ├── PetPolicy.php │ └── UserPolicy.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── Filament │ │ ├── AdminPanelProvider.php │ │ ├── DoctorPanelProvider.php │ │ └── OwnerPanelProvider.php │ ├── RouteServiceProvider.php │ └── TelescopeServiceProvider.php └── Support │ └── AvatarOptions.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filament.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php ├── telescope.php └── view.php ├── database ├── .gitignore ├── factories │ ├── AppointmentFactory.php │ ├── ClinicFactory.php │ ├── PetFactory.php │ ├── RoleFactory.php │ ├── ScheduleFactory.php │ ├── SlotFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_reset_tokens_table.php │ ├── 2018_08_08_100000_create_telescope_entries_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2023_08_05_194114_create_pets_table.php │ ├── 2023_08_05_194122_create_appointments_table.php │ ├── 2023_08_12_202231_create_roles_table.php │ ├── 2023_08_12_203531_create_slots_table.php │ ├── 2023_09_03_153221_create_schedules_table.php │ ├── 2023_09_13_232014_create_clinics_table.php │ ├── 2023_09_13_232756_create_clinic_pet_table.php │ ├── 2023_09_13_233220_create_clinic_user_table.php │ ├── 2023_09_13_233408_update_schedules_table_add_clinic_id_column.php │ ├── 2023_09_13_233605_update_appointments_table_add_clinic_id_column.php │ ├── 2023_09_17_171825_update_schedules_table_add_day_of_week_column.php │ ├── 2023_09_24_164344_update_schedules_table_remove_date_column.php │ ├── 2023_09_24_173531_update_appointments_table_add_date_column.php │ ├── 2023_10_01_161838_update_appointments_table_add_doctor_id_column.php │ ├── 2023_10_08_155836_update_users_table_add_avatar_url_column.php │ └── 2023_10_15_165041_create_notes_table.php └── seeders │ ├── DatabaseSeeder.php │ ├── RoleSeeder.php │ └── UserSeeder.php ├── package.json ├── phpstan.neon ├── phpunit.xml ├── pint.json ├── public ├── .htaccess ├── css │ └── filament │ │ ├── filament │ │ └── app.css │ │ ├── forms │ │ └── forms.css │ │ └── support │ │ └── support.css ├── favicon.ico ├── index.php ├── js │ └── filament │ │ ├── filament │ │ ├── app.js │ │ └── echo.js │ │ ├── forms │ │ ├── components │ │ │ ├── color-picker.js │ │ │ ├── date-time-picker.js │ │ │ ├── file-upload.js │ │ │ ├── key-value.js │ │ │ ├── markdown-editor.js │ │ │ ├── rich-editor.js │ │ │ ├── select.js │ │ │ ├── tags-input.js │ │ │ └── textarea.js │ │ └── forms.js │ │ ├── notifications │ │ └── notifications.js │ │ ├── support │ │ ├── async-alpine.js │ │ └── support.js │ │ ├── tables │ │ ├── components │ │ │ └── table.js │ │ └── tables.js │ │ └── widgets │ │ └── components │ │ ├── chart.js │ │ └── stats-overview │ │ └── stat │ │ └── chart.js ├── robots.txt └── vendor │ └── telescope │ ├── app-dark.css │ ├── app.css │ ├── app.js │ ├── favicon.ico │ └── mix-manifest.json ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js └── views │ ├── filament │ ├── components │ │ └── select-results.blade.php │ └── owner │ │ └── pages │ │ └── auth │ │ └── register.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ ├── AppointmentResourceTest.php │ └── PetResourceTest.php ├── Pest.php └── TestCase.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/.gitignore -------------------------------------------------------------------------------- /.phpactor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/.phpactor.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Enums/AppointmentStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Enums/AppointmentStatus.php -------------------------------------------------------------------------------- /app/Enums/DaysOfTheWeek.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Enums/DaysOfTheWeek.php -------------------------------------------------------------------------------- /app/Enums/PetType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Enums/PetType.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Filament/Doctor/Resources/AppointmentResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Doctor/Resources/AppointmentResource.php -------------------------------------------------------------------------------- /app/Filament/Doctor/Resources/AppointmentResource/Pages/CreateAppointment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Doctor/Resources/AppointmentResource/Pages/CreateAppointment.php -------------------------------------------------------------------------------- /app/Filament/Doctor/Resources/AppointmentResource/Pages/EditAppointment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Doctor/Resources/AppointmentResource/Pages/EditAppointment.php -------------------------------------------------------------------------------- /app/Filament/Doctor/Resources/AppointmentResource/Pages/ListAppointments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Doctor/Resources/AppointmentResource/Pages/ListAppointments.php -------------------------------------------------------------------------------- /app/Filament/Doctor/Resources/AppointmentResource/RelationManagers/NotesRelationManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Doctor/Resources/AppointmentResource/RelationManagers/NotesRelationManager.php -------------------------------------------------------------------------------- /app/Filament/Doctor/Resources/PetResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Doctor/Resources/PetResource.php -------------------------------------------------------------------------------- /app/Filament/Doctor/Resources/PetResource/Pages/CreatePet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Doctor/Resources/PetResource/Pages/CreatePet.php -------------------------------------------------------------------------------- /app/Filament/Doctor/Resources/PetResource/Pages/EditPet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Doctor/Resources/PetResource/Pages/EditPet.php -------------------------------------------------------------------------------- /app/Filament/Doctor/Resources/PetResource/Pages/ListPets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Doctor/Resources/PetResource/Pages/ListPets.php -------------------------------------------------------------------------------- /app/Filament/Doctor/Resources/ScheduleResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Doctor/Resources/ScheduleResource.php -------------------------------------------------------------------------------- /app/Filament/Doctor/Resources/ScheduleResource/Pages/CreateSchedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Doctor/Resources/ScheduleResource/Pages/CreateSchedule.php -------------------------------------------------------------------------------- /app/Filament/Doctor/Resources/ScheduleResource/Pages/EditSchedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Doctor/Resources/ScheduleResource/Pages/EditSchedule.php -------------------------------------------------------------------------------- /app/Filament/Doctor/Resources/ScheduleResource/Pages/ListSchedules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Doctor/Resources/ScheduleResource/Pages/ListSchedules.php -------------------------------------------------------------------------------- /app/Filament/Owner/Pages/Auth/Register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Owner/Pages/Auth/Register.php -------------------------------------------------------------------------------- /app/Filament/Owner/Resources/AppointmentResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Owner/Resources/AppointmentResource.php -------------------------------------------------------------------------------- /app/Filament/Owner/Resources/AppointmentResource/Pages/CreateAppointment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Owner/Resources/AppointmentResource/Pages/CreateAppointment.php -------------------------------------------------------------------------------- /app/Filament/Owner/Resources/AppointmentResource/Pages/EditAppointment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Owner/Resources/AppointmentResource/Pages/EditAppointment.php -------------------------------------------------------------------------------- /app/Filament/Owner/Resources/AppointmentResource/Pages/ListAppointments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Owner/Resources/AppointmentResource/Pages/ListAppointments.php -------------------------------------------------------------------------------- /app/Filament/Owner/Resources/PetResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Owner/Resources/PetResource.php -------------------------------------------------------------------------------- /app/Filament/Owner/Resources/PetResource/Pages/CreatePet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Owner/Resources/PetResource/Pages/CreatePet.php -------------------------------------------------------------------------------- /app/Filament/Owner/Resources/PetResource/Pages/EditPet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Owner/Resources/PetResource/Pages/EditPet.php -------------------------------------------------------------------------------- /app/Filament/Owner/Resources/PetResource/Pages/ListPets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Owner/Resources/PetResource/Pages/ListPets.php -------------------------------------------------------------------------------- /app/Filament/Pages/Auth/EditProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Pages/Auth/EditProfile.php -------------------------------------------------------------------------------- /app/Filament/Resources/AppointmentResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Resources/AppointmentResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/AppointmentResource/Pages/CreateAppointment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Resources/AppointmentResource/Pages/CreateAppointment.php -------------------------------------------------------------------------------- /app/Filament/Resources/AppointmentResource/Pages/EditAppointment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Resources/AppointmentResource/Pages/EditAppointment.php -------------------------------------------------------------------------------- /app/Filament/Resources/AppointmentResource/Pages/ListAppointments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Resources/AppointmentResource/Pages/ListAppointments.php -------------------------------------------------------------------------------- /app/Filament/Resources/ClinicResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Resources/ClinicResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/ClinicResource/Pages/CreateClinic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Resources/ClinicResource/Pages/CreateClinic.php -------------------------------------------------------------------------------- /app/Filament/Resources/ClinicResource/Pages/EditClinic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Resources/ClinicResource/Pages/EditClinic.php -------------------------------------------------------------------------------- /app/Filament/Resources/ClinicResource/Pages/ListClinics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Resources/ClinicResource/Pages/ListClinics.php -------------------------------------------------------------------------------- /app/Filament/Resources/PetResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Resources/PetResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/PetResource/Pages/CreatePet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Resources/PetResource/Pages/CreatePet.php -------------------------------------------------------------------------------- /app/Filament/Resources/PetResource/Pages/EditPet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Resources/PetResource/Pages/EditPet.php -------------------------------------------------------------------------------- /app/Filament/Resources/PetResource/Pages/ListPets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Resources/PetResource/Pages/ListPets.php -------------------------------------------------------------------------------- /app/Filament/Resources/ScheduleResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Resources/ScheduleResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/ScheduleResource/Pages/CreateSchedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Resources/ScheduleResource/Pages/CreateSchedule.php -------------------------------------------------------------------------------- /app/Filament/Resources/ScheduleResource/Pages/EditSchedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Resources/ScheduleResource/Pages/EditSchedule.php -------------------------------------------------------------------------------- /app/Filament/Resources/ScheduleResource/Pages/ListSchedules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Resources/ScheduleResource/Pages/ListSchedules.php -------------------------------------------------------------------------------- /app/Filament/Resources/UserResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Resources/UserResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/UserResource/Pages/CreateUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Resources/UserResource/Pages/CreateUser.php -------------------------------------------------------------------------------- /app/Filament/Resources/UserResource/Pages/EditUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Resources/UserResource/Pages/EditUser.php -------------------------------------------------------------------------------- /app/Filament/Resources/UserResource/Pages/ListUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Filament/Resources/UserResource/Pages/ListUsers.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/ApplyTenantScopes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Http/Middleware/ApplyTenantScopes.php -------------------------------------------------------------------------------- /app/Http/Middleware/AssignGlobalScopes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Http/Middleware/AssignGlobalScopes.php -------------------------------------------------------------------------------- /app/Http/Middleware/AssignOwnerGlobalScopes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Http/Middleware/AssignOwnerGlobalScopes.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Http/Middleware/ValidateSignature.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Models/Appointment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Models/Appointment.php -------------------------------------------------------------------------------- /app/Models/Clinic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Models/Clinic.php -------------------------------------------------------------------------------- /app/Models/Note.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Models/Note.php -------------------------------------------------------------------------------- /app/Models/Pet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Models/Pet.php -------------------------------------------------------------------------------- /app/Models/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Models/Role.php -------------------------------------------------------------------------------- /app/Models/Schedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Models/Schedule.php -------------------------------------------------------------------------------- /app/Models/Slot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Models/Slot.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Policies/ClinicPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Policies/ClinicPolicy.php -------------------------------------------------------------------------------- /app/Policies/PetPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Policies/PetPolicy.php -------------------------------------------------------------------------------- /app/Policies/UserPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Policies/UserPolicy.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/Filament/AdminPanelProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Providers/Filament/AdminPanelProvider.php -------------------------------------------------------------------------------- /app/Providers/Filament/DoctorPanelProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Providers/Filament/DoctorPanelProvider.php -------------------------------------------------------------------------------- /app/Providers/Filament/OwnerPanelProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Providers/Filament/OwnerPanelProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/TelescopeServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Providers/TelescopeServiceProvider.php -------------------------------------------------------------------------------- /app/Support/AvatarOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/app/Support/AvatarOptions.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filament.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/config/filament.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/config/session.php -------------------------------------------------------------------------------- /config/telescope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/config/telescope.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/AppointmentFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/factories/AppointmentFactory.php -------------------------------------------------------------------------------- /database/factories/ClinicFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/factories/ClinicFactory.php -------------------------------------------------------------------------------- /database/factories/PetFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/factories/PetFactory.php -------------------------------------------------------------------------------- /database/factories/RoleFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/factories/RoleFactory.php -------------------------------------------------------------------------------- /database/factories/ScheduleFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/factories/ScheduleFactory.php -------------------------------------------------------------------------------- /database/factories/SlotFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/factories/SlotFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2018_08_08_100000_create_telescope_entries_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/migrations/2018_08_08_100000_create_telescope_entries_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2023_08_05_194114_create_pets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/migrations/2023_08_05_194114_create_pets_table.php -------------------------------------------------------------------------------- /database/migrations/2023_08_05_194122_create_appointments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/migrations/2023_08_05_194122_create_appointments_table.php -------------------------------------------------------------------------------- /database/migrations/2023_08_12_202231_create_roles_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/migrations/2023_08_12_202231_create_roles_table.php -------------------------------------------------------------------------------- /database/migrations/2023_08_12_203531_create_slots_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/migrations/2023_08_12_203531_create_slots_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_03_153221_create_schedules_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/migrations/2023_09_03_153221_create_schedules_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_13_232014_create_clinics_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/migrations/2023_09_13_232014_create_clinics_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_13_232756_create_clinic_pet_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/migrations/2023_09_13_232756_create_clinic_pet_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_13_233220_create_clinic_user_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/migrations/2023_09_13_233220_create_clinic_user_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_13_233408_update_schedules_table_add_clinic_id_column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/migrations/2023_09_13_233408_update_schedules_table_add_clinic_id_column.php -------------------------------------------------------------------------------- /database/migrations/2023_09_13_233605_update_appointments_table_add_clinic_id_column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/migrations/2023_09_13_233605_update_appointments_table_add_clinic_id_column.php -------------------------------------------------------------------------------- /database/migrations/2023_09_17_171825_update_schedules_table_add_day_of_week_column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/migrations/2023_09_17_171825_update_schedules_table_add_day_of_week_column.php -------------------------------------------------------------------------------- /database/migrations/2023_09_24_164344_update_schedules_table_remove_date_column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/migrations/2023_09_24_164344_update_schedules_table_remove_date_column.php -------------------------------------------------------------------------------- /database/migrations/2023_09_24_173531_update_appointments_table_add_date_column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/migrations/2023_09_24_173531_update_appointments_table_add_date_column.php -------------------------------------------------------------------------------- /database/migrations/2023_10_01_161838_update_appointments_table_add_doctor_id_column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/migrations/2023_10_01_161838_update_appointments_table_add_doctor_id_column.php -------------------------------------------------------------------------------- /database/migrations/2023_10_08_155836_update_users_table_add_avatar_url_column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/migrations/2023_10_08_155836_update_users_table_add_avatar_url_column.php -------------------------------------------------------------------------------- /database/migrations/2023_10_15_165041_create_notes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/migrations/2023_10_15_165041_create_notes_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/RoleSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/seeders/RoleSeeder.php -------------------------------------------------------------------------------- /database/seeders/UserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/database/seeders/UserSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/package.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/phpunit.xml -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/pint.json -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/filament/filament/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/css/filament/filament/app.css -------------------------------------------------------------------------------- /public/css/filament/forms/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/css/filament/forms/forms.css -------------------------------------------------------------------------------- /public/css/filament/support/support.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/css/filament/support/support.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/filament/filament/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/js/filament/filament/app.js -------------------------------------------------------------------------------- /public/js/filament/filament/echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/js/filament/filament/echo.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/color-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/js/filament/forms/components/color-picker.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/date-time-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/js/filament/forms/components/date-time-picker.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/file-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/js/filament/forms/components/file-upload.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/key-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/js/filament/forms/components/key-value.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/markdown-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/js/filament/forms/components/markdown-editor.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/rich-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/js/filament/forms/components/rich-editor.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/js/filament/forms/components/select.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/tags-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/js/filament/forms/components/tags-input.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/js/filament/forms/components/textarea.js -------------------------------------------------------------------------------- /public/js/filament/forms/forms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/js/filament/forms/forms.js -------------------------------------------------------------------------------- /public/js/filament/notifications/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/js/filament/notifications/notifications.js -------------------------------------------------------------------------------- /public/js/filament/support/async-alpine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/js/filament/support/async-alpine.js -------------------------------------------------------------------------------- /public/js/filament/support/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/js/filament/support/support.js -------------------------------------------------------------------------------- /public/js/filament/tables/components/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/js/filament/tables/components/table.js -------------------------------------------------------------------------------- /public/js/filament/tables/tables.js: -------------------------------------------------------------------------------- 1 | (()=>{})(); 2 | -------------------------------------------------------------------------------- /public/js/filament/widgets/components/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/js/filament/widgets/components/chart.js -------------------------------------------------------------------------------- /public/js/filament/widgets/components/stats-overview/stat/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/js/filament/widgets/components/stats-overview/stat/chart.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/vendor/telescope/app-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/vendor/telescope/app-dark.css -------------------------------------------------------------------------------- /public/vendor/telescope/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/vendor/telescope/app.css -------------------------------------------------------------------------------- /public/vendor/telescope/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/vendor/telescope/app.js -------------------------------------------------------------------------------- /public/vendor/telescope/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/vendor/telescope/favicon.ico -------------------------------------------------------------------------------- /public/vendor/telescope/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/public/vendor/telescope/mix-manifest.json -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/views/filament/components/select-results.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/resources/views/filament/components/select-results.blade.php -------------------------------------------------------------------------------- /resources/views/filament/owner/pages/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/resources/views/filament/owner/pages/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/routes/web.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/tuto1902/filament-pet-clinic/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 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/AppointmentResourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/tests/Feature/AppointmentResourceTest.php -------------------------------------------------------------------------------- /tests/Feature/PetResourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/tests/Feature/PetResourceTest.php -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuto1902/filament-pet-clinic/HEAD/vite.config.js --------------------------------------------------------------------------------