├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── Appointment.php ├── Client.php ├── Console │ └── Kernel.php ├── Employee.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ ├── AppointmentsController.php │ │ │ ├── ClientsController.php │ │ │ ├── EmployeesController.php │ │ │ ├── HomeController.php │ │ │ ├── PermissionsController.php │ │ │ ├── RolesController.php │ │ │ ├── ServicesController.php │ │ │ ├── SystemCalendarController.php │ │ │ └── UsersController.php │ │ ├── Api │ │ │ └── V1 │ │ │ │ └── Admin │ │ │ │ ├── AppointmentsApiController.php │ │ │ │ ├── ClientsApiController.php │ │ │ │ ├── EmployeesApiController.php │ │ │ │ ├── PermissionsApiController.php │ │ │ │ ├── RolesApiController.php │ │ │ │ ├── ServicesApiController.php │ │ │ │ └── UsersApiController.php │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── Controller.php │ │ └── Traits │ │ │ └── MediaUploadingTrait.php │ ├── Kernel.php │ ├── Middleware │ │ ├── AuthGates.php │ │ ├── Authenticate.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── SetLocale.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ ├── Requests │ │ ├── MassDestroyAppointmentRequest.php │ │ ├── MassDestroyClientRequest.php │ │ ├── MassDestroyEmployeeRequest.php │ │ ├── MassDestroyPermissionRequest.php │ │ ├── MassDestroyRoleRequest.php │ │ ├── MassDestroyServiceRequest.php │ │ ├── MassDestroyUserRequest.php │ │ ├── StoreAppointmentRequest.php │ │ ├── StoreClientRequest.php │ │ ├── StoreEmployeeRequest.php │ │ ├── StorePermissionRequest.php │ │ ├── StoreRoleRequest.php │ │ ├── StoreServiceRequest.php │ │ ├── StoreUserRequest.php │ │ ├── UpdateAppointmentRequest.php │ │ ├── UpdateClientRequest.php │ │ ├── UpdateEmployeeRequest.php │ │ ├── UpdatePermissionRequest.php │ │ ├── UpdateRoleRequest.php │ │ ├── UpdateServiceRequest.php │ │ └── UpdateUserRequest.php │ └── Resources │ │ └── Admin │ │ ├── AppointmentResource.php │ │ ├── ClientResource.php │ │ ├── EmployeeResource.php │ │ ├── PermissionResource.php │ │ ├── RoleResource.php │ │ ├── ServiceResource.php │ │ └── UserResource.php ├── Permission.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Role.php ├── Service.php └── User.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── panel.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ ├── AppointmentFactory.php │ ├── ClientFactory.php │ ├── EmployeeFactory.php │ ├── ServiceFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_09_19_000000_create_media_table.php │ ├── 2019_09_19_000001_create_permissions_table.php │ ├── 2019_09_19_000002_create_roles_table.php │ ├── 2019_09_19_000003_create_users_table.php │ ├── 2019_09_19_000004_create_services_table.php │ ├── 2019_09_19_000005_create_employees_table.php │ ├── 2019_09_19_000006_create_clients_table.php │ ├── 2019_09_19_000007_create_appointments_table.php │ ├── 2019_09_19_000008_create_permission_role_pivot_table.php │ ├── 2019_09_19_000009_create_role_user_pivot_table.php │ ├── 2019_09_19_000010_create_employee_service_pivot_table.php │ ├── 2019_09_19_000011_create_appointment_service_pivot_table.php │ └── 2019_09_19_000012_add_relationship_fields_to_appointments_table.php └── seeds │ ├── AppointmentsTableSeeder.php │ ├── ClientsTableSeeder.php │ ├── DatabaseSeeder.php │ ├── EmployeesTableSeeder.php │ ├── PermissionRoleTableSeeder.php │ ├── PermissionsTableSeeder.php │ ├── RoleUserTableSeeder.php │ ├── RolesTableSeeder.php │ ├── ServicesTableSeeder.php │ └── UsersTableSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ └── custom.css ├── favicon.ico ├── index.php ├── js │ └── main.js └── robots.txt ├── resources ├── js │ ├── app.js │ └── bootstrap.js ├── lang │ └── en │ │ ├── auth.php │ │ ├── cruds.php │ │ ├── global.php │ │ ├── pagination.php │ │ ├── panel.php │ │ ├── passwords.php │ │ └── validation.php ├── sass │ └── app.scss └── views │ ├── admin │ ├── appointments │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── calendar │ │ └── calendar.blade.php │ ├── clients │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── employees │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── permissions │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── roles │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── services │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ └── users │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── auth │ ├── login.blade.php │ └── passwords │ │ ├── email.blade.php │ │ └── reset.blade.php │ ├── home.blade.php │ ├── layouts │ ├── admin.blade.php │ └── app.blade.php │ ├── partials │ ├── datatablesActions.blade.php │ └── menu.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 ├── tests ├── Browser │ ├── AppointmentsTest.php │ ├── ClientsTest.php │ ├── EmployeesTest.php │ ├── PermissionsTest.php │ ├── RolesTest.php │ ├── ServicesTest.php │ └── UsersTest.php ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php ├── Unit │ └── ExampleTest.php └── bootstrap.php ├── webpack.mix.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/README.md -------------------------------------------------------------------------------- /app/Appointment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Appointment.php -------------------------------------------------------------------------------- /app/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Client.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Employee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Employee.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/AppointmentsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Controllers/Admin/AppointmentsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/ClientsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Controllers/Admin/ClientsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/EmployeesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Controllers/Admin/EmployeesController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Controllers/Admin/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/PermissionsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Controllers/Admin/PermissionsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/RolesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Controllers/Admin/RolesController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/ServicesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Controllers/Admin/ServicesController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/SystemCalendarController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Controllers/Admin/SystemCalendarController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/UsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Controllers/Admin/UsersController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/V1/Admin/AppointmentsApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Controllers/Api/V1/Admin/AppointmentsApiController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/V1/Admin/ClientsApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Controllers/Api/V1/Admin/ClientsApiController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/V1/Admin/EmployeesApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Controllers/Api/V1/Admin/EmployeesApiController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/V1/Admin/PermissionsApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Controllers/Api/V1/Admin/PermissionsApiController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/V1/Admin/RolesApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Controllers/Api/V1/Admin/RolesApiController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/V1/Admin/ServicesApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Controllers/Api/V1/Admin/ServicesApiController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/V1/Admin/UsersApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Controllers/Api/V1/Admin/UsersApiController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/Traits/MediaUploadingTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Controllers/Traits/MediaUploadingTrait.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/AuthGates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Middleware/AuthGates.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/SetLocale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Middleware/SetLocale.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/MassDestroyAppointmentRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Requests/MassDestroyAppointmentRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/MassDestroyClientRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Requests/MassDestroyClientRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/MassDestroyEmployeeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Requests/MassDestroyEmployeeRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/MassDestroyPermissionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Requests/MassDestroyPermissionRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/MassDestroyRoleRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Requests/MassDestroyRoleRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/MassDestroyServiceRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Requests/MassDestroyServiceRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/MassDestroyUserRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Requests/MassDestroyUserRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreAppointmentRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Requests/StoreAppointmentRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreClientRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Requests/StoreClientRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreEmployeeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Requests/StoreEmployeeRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StorePermissionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Requests/StorePermissionRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreRoleRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Requests/StoreRoleRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreServiceRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Requests/StoreServiceRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreUserRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Requests/StoreUserRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateAppointmentRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Requests/UpdateAppointmentRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateClientRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Requests/UpdateClientRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateEmployeeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Requests/UpdateEmployeeRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdatePermissionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Requests/UpdatePermissionRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateRoleRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Requests/UpdateRoleRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateServiceRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Requests/UpdateServiceRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateUserRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Requests/UpdateUserRequest.php -------------------------------------------------------------------------------- /app/Http/Resources/Admin/AppointmentResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Resources/Admin/AppointmentResource.php -------------------------------------------------------------------------------- /app/Http/Resources/Admin/ClientResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Resources/Admin/ClientResource.php -------------------------------------------------------------------------------- /app/Http/Resources/Admin/EmployeeResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Resources/Admin/EmployeeResource.php -------------------------------------------------------------------------------- /app/Http/Resources/Admin/PermissionResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Resources/Admin/PermissionResource.php -------------------------------------------------------------------------------- /app/Http/Resources/Admin/RoleResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Resources/Admin/RoleResource.php -------------------------------------------------------------------------------- /app/Http/Resources/Admin/ServiceResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Resources/Admin/ServiceResource.php -------------------------------------------------------------------------------- /app/Http/Resources/Admin/UserResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Http/Resources/Admin/UserResource.php -------------------------------------------------------------------------------- /app/Permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Permission.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Role.php -------------------------------------------------------------------------------- /app/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/Service.php -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/app/User.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/panel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/config/panel.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/.gitignore -------------------------------------------------------------------------------- /database/factories/AppointmentFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/factories/AppointmentFactory.php -------------------------------------------------------------------------------- /database/factories/ClientFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/factories/ClientFactory.php -------------------------------------------------------------------------------- /database/factories/EmployeeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/factories/EmployeeFactory.php -------------------------------------------------------------------------------- /database/factories/ServiceFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/factories/ServiceFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_19_000000_create_media_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/migrations/2019_09_19_000000_create_media_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_19_000001_create_permissions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/migrations/2019_09_19_000001_create_permissions_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_19_000002_create_roles_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/migrations/2019_09_19_000002_create_roles_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_19_000003_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/migrations/2019_09_19_000003_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_19_000004_create_services_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/migrations/2019_09_19_000004_create_services_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_19_000005_create_employees_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/migrations/2019_09_19_000005_create_employees_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_19_000006_create_clients_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/migrations/2019_09_19_000006_create_clients_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_19_000007_create_appointments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/migrations/2019_09_19_000007_create_appointments_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_19_000008_create_permission_role_pivot_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/migrations/2019_09_19_000008_create_permission_role_pivot_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_19_000009_create_role_user_pivot_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/migrations/2019_09_19_000009_create_role_user_pivot_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_19_000010_create_employee_service_pivot_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/migrations/2019_09_19_000010_create_employee_service_pivot_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_19_000011_create_appointment_service_pivot_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/migrations/2019_09_19_000011_create_appointment_service_pivot_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_19_000012_add_relationship_fields_to_appointments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/migrations/2019_09_19_000012_add_relationship_fields_to_appointments_table.php -------------------------------------------------------------------------------- /database/seeds/AppointmentsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/seeds/AppointmentsTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/ClientsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/seeds/ClientsTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeds/EmployeesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/seeds/EmployeesTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/PermissionRoleTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/seeds/PermissionRoleTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/PermissionsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/seeds/PermissionsTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/RoleUserTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/seeds/RoleUserTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/RolesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/seeds/RolesTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/ServicesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/seeds/ServicesTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/UsersTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/database/seeds/UsersTableSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/public/css/custom.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/public/js/main.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/cruds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/lang/en/cruds.php -------------------------------------------------------------------------------- /resources/lang/en/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/lang/en/global.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/panel.php: -------------------------------------------------------------------------------- 1 | 'Appointments', 5 | ]; 6 | -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- 1 | // 2 | -------------------------------------------------------------------------------- /resources/views/admin/appointments/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/appointments/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/appointments/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/appointments/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/appointments/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/appointments/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/appointments/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/appointments/show.blade.php -------------------------------------------------------------------------------- /resources/views/admin/calendar/calendar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/calendar/calendar.blade.php -------------------------------------------------------------------------------- /resources/views/admin/clients/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/clients/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/clients/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/clients/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/clients/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/clients/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/clients/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/clients/show.blade.php -------------------------------------------------------------------------------- /resources/views/admin/employees/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/employees/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/employees/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/employees/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/employees/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/employees/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/employees/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/employees/show.blade.php -------------------------------------------------------------------------------- /resources/views/admin/permissions/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/permissions/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/permissions/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/permissions/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/permissions/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/permissions/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/permissions/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/permissions/show.blade.php -------------------------------------------------------------------------------- /resources/views/admin/roles/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/roles/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/roles/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/roles/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/roles/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/roles/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/roles/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/roles/show.blade.php -------------------------------------------------------------------------------- /resources/views/admin/services/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/services/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/services/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/services/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/services/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/services/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/services/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/services/show.blade.php -------------------------------------------------------------------------------- /resources/views/admin/users/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/users/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/users/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/users/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/users/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/users/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/users/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/admin/users/show.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/auth/passwords/email.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/auth/passwords/reset.blade.php -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/admin.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/layouts/admin.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/partials/datatablesActions.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/partials/datatablesActions.blade.php -------------------------------------------------------------------------------- /resources/views/partials/menu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/partials/menu.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/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/LaravelDaily/Laravel-Appointments/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/Browser/AppointmentsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/tests/Browser/AppointmentsTest.php -------------------------------------------------------------------------------- /tests/Browser/ClientsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/tests/Browser/ClientsTest.php -------------------------------------------------------------------------------- /tests/Browser/EmployeesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/tests/Browser/EmployeesTest.php -------------------------------------------------------------------------------- /tests/Browser/PermissionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/tests/Browser/PermissionsTest.php -------------------------------------------------------------------------------- /tests/Browser/RolesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/tests/Browser/RolesTest.php -------------------------------------------------------------------------------- /tests/Browser/ServicesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/tests/Browser/ServicesTest.php -------------------------------------------------------------------------------- /tests/Browser/UsersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/tests/Browser/UsersTest.php -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/webpack.mix.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaravelDaily/Laravel-Appointments/HEAD/yarn.lock --------------------------------------------------------------------------------