├── .DS_Store ├── .editorconfig ├── .env.example ├── .gitattributes ├── .github └── workflows │ ├── dependency-review.yml │ └── lint.yml ├── .gitignore ├── .styleci.yml ├── CONTRIBUTING.md ├── README.md ├── SECURITY.md ├── app ├── Console │ └── Kernel.php ├── Events │ ├── NewReservationEvent.php │ └── RefreshDashboardEvent.php ├── Exceptions │ └── Handler.php ├── Helpers │ └── Helper.php ├── Http │ ├── Controllers │ │ ├── ActivityController.php │ │ ├── Auth │ │ │ ├── ConfirmPasswordController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── AuthController.php │ │ ├── ChartController.php │ │ ├── Controller.php │ │ ├── CustomerController.php │ │ ├── DashboardController.php │ │ ├── EventController.php │ │ ├── FacilityController.php │ │ ├── HomeController.php │ │ ├── ImageController.php │ │ ├── NotificationsController.php │ │ ├── PaymentController.php │ │ ├── RoomController.php │ │ ├── RoomStatusController.php │ │ ├── TransactionController.php │ │ ├── TransactionRoomReservationController.php │ │ ├── TypeController.php │ │ └── UserController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── CheckRole.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ ├── ChooseRoomRequest.php │ │ ├── ForgotPasswordRequest.php │ │ ├── LoginRequest.php │ │ ├── ResetPasswordRequest.php │ │ ├── StoreCustomerRequest.php │ │ ├── StoreImageRequest.php │ │ ├── StoreRoomRequest.php │ │ ├── StoreRoomStatusRequest.php │ │ ├── StoreTypeRequest.php │ │ ├── StoreUserRequest.php │ │ └── UpdateCustomerRequest.php ├── Models │ ├── Customer.php │ ├── Facility.php │ ├── Image.php │ ├── Payment.php │ ├── Room.php │ ├── RoomStatus.php │ ├── Transaction.php │ ├── Type.php │ └── User.php ├── Notifications │ └── NewRoomReservationDownPayment.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php └── Repositories │ ├── Implementation │ ├── CustomerRepository.php │ ├── ImageRepository.php │ ├── PaymentRepository.php │ ├── ReservationRepository.php │ ├── RoomRepository.php │ ├── RoomStatusRepository.php │ ├── TransactionRepository.php │ ├── TypeRepository.php │ └── UserRepository.php │ └── Interface │ ├── CustomerRepositoryInterface.php │ ├── ImageRepositoryInterface.php │ ├── PaymentRepositoryInterface.php │ ├── ReservationRepositoryInterface.php │ ├── RoomRepositoryInterface.php │ ├── RoomStatusRepositoryInterface.php │ ├── TransactionRepositoryInterface.php │ ├── TypeRepositoryInterface.php │ └── UserRepositoryInterface.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── activitylog.php ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── reverb.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ ├── CustomerFactory.php │ ├── FacilityFactory.php │ ├── ImageFactory.php │ ├── RoomFactory.php │ ├── RoomStatusFactory.php │ └── UserFactory.php ├── migrations │ ├── 0000_00_00_000000_create_websockets_statistics_entries_table.php │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2021_04_09_022148_create_room_statuses_table.php │ ├── 2021_04_09_143243_create_customers_table.php │ ├── 2021_04_09_143318_create_types_table.php │ ├── 2021_04_09_143320_create_rooms_table.php │ ├── 2021_04_09_143335_create_transactions_table.php │ ├── 2021_04_09_143453_create_payments_table.php │ ├── 2021_04_09_153936_create_images_table.php │ ├── 2021_04_09_161146_create_facilities_table.php │ ├── 2021_04_09_161237_create_facility_room_table.php │ ├── 2021_04_17_202643_add_status_to_payments_table.php │ ├── 2021_04_18_205922_create_notifications_table.php │ ├── 2024_09_24_191240_create_activity_log_table.php │ ├── 2024_09_24_191241_add_event_column_to_activity_log_table.php │ └── 2024_09_24_191242_add_batch_uuid_column_to_activity_log_table.php └── seeders │ ├── CustomerSeeder.php │ ├── DatabaseSeeder.php │ ├── FacilitySeeder.php │ ├── ImageSeeder.php │ ├── RoomSeeder.php │ ├── RoomStatusSeeder.php │ ├── TypeSeeder.php │ └── UserSeeder.php ├── erd.PNG ├── example-b.png ├── example.png ├── package.json ├── phpunit.xml ├── phpunit.xml.bak ├── public ├── .htaccess ├── asset │ └── loader.gif ├── css │ └── readme.md ├── erd.PNG ├── favicon.ico ├── img │ ├── default │ │ ├── default-room.png │ │ └── default-user.jpg │ ├── logo │ │ └── sip.png │ ├── room │ │ └── default │ │ │ └── default.jpg │ └── user │ │ └── default │ │ └── default.jpg ├── index.php ├── js │ └── readme.md ├── mix-manifest.json ├── robots.txt ├── style │ └── css │ │ └── stylelogin.css └── web.config ├── rector.php ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ ├── bootstrap.js │ ├── components │ │ └── ExampleComponent.vue │ ├── echo.js │ └── pages │ │ ├── dashboard.js │ │ ├── global.js │ │ ├── login.js │ │ ├── room-status.js │ │ ├── room.js │ │ └── type.js ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php ├── sass │ ├── _custom.scss │ ├── _datatable-professional.scss │ ├── _datatable.scss │ ├── _navbar.scss │ ├── _notification.scss │ ├── _progressindicatior.scss │ ├── _variables.scss │ └── app.scss └── views │ ├── activity_log │ ├── all.blade.php │ └── index.blade.php │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── confirm.blade.php │ │ └── email.blade.php │ ├── register.blade.php │ ├── reset-password.blade.php │ └── verify.blade.php │ ├── customer │ ├── create.blade.php │ ├── edit.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── dashboard │ ├── chart_detail.blade.php │ └── index.blade.php │ ├── event │ ├── index.blade.php │ └── listen.blade.php │ ├── facility │ └── index.blade.php │ ├── home.blade.php │ ├── layouts │ └── app.blade.php │ ├── notification │ └── index.blade.php │ ├── payment │ ├── index.blade.php │ └── invoice.blade.php │ ├── room │ ├── create.blade.php │ ├── edit.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── roomstatus │ ├── create.blade.php │ ├── edit.blade.php │ └── index.blade.php │ ├── template │ ├── auth.blade.php │ ├── include │ │ ├── _footer.blade.php │ │ ├── _mobile-header.blade.php │ │ ├── _navbar.blade.php │ │ ├── _sidebar.blade.php │ │ └── _sidebarToggle.blade.php │ ├── invoicemaster.blade.php │ ├── master.blade.php │ └── paginationlinks.blade.php │ ├── transaction │ ├── index.blade.php │ ├── payment │ │ └── create.blade.php │ └── reservation │ │ ├── chooseRoom.blade.php │ │ ├── confirmation.blade.php │ │ ├── createIdentity.blade.php │ │ ├── pickFromCustomer.blade.php │ │ ├── progressbar.blade.php │ │ └── viewCountPerson.blade.php │ ├── type │ ├── create.blade.php │ ├── edit.blade.php │ └── index.blade.php │ ├── user │ ├── create.blade.php │ ├── edit.blade.php │ ├── index.blade.php │ └── show.blade.php │ └── vendor │ ├── mail │ ├── html │ │ ├── button.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── layout.blade.php │ │ ├── message.blade.php │ │ ├── panel.blade.php │ │ ├── subcopy.blade.php │ │ ├── table.blade.php │ │ └── themes │ │ │ └── default.css │ └── text │ │ ├── button.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── layout.blade.php │ │ ├── message.blade.php │ │ ├── panel.blade.php │ │ ├── subcopy.blade.php │ │ └── table.blade.php │ └── notifications │ └── email.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/.DS_Store -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/.styleci.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Events/NewReservationEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Events/NewReservationEvent.php -------------------------------------------------------------------------------- /app/Events/RefreshDashboardEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Events/RefreshDashboardEvent.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Helpers/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Helpers/Helper.php -------------------------------------------------------------------------------- /app/Http/Controllers/ActivityController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Controllers/ActivityController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ConfirmPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Controllers/Auth/ConfirmPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Controllers/AuthController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ChartController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Controllers/ChartController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/CustomerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Controllers/CustomerController.php -------------------------------------------------------------------------------- /app/Http/Controllers/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Controllers/DashboardController.php -------------------------------------------------------------------------------- /app/Http/Controllers/EventController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Controllers/EventController.php -------------------------------------------------------------------------------- /app/Http/Controllers/FacilityController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Controllers/FacilityController.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ImageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Controllers/ImageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/NotificationsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Controllers/NotificationsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PaymentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Controllers/PaymentController.php -------------------------------------------------------------------------------- /app/Http/Controllers/RoomController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Controllers/RoomController.php -------------------------------------------------------------------------------- /app/Http/Controllers/RoomStatusController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Controllers/RoomStatusController.php -------------------------------------------------------------------------------- /app/Http/Controllers/TransactionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Controllers/TransactionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/TransactionRoomReservationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Controllers/TransactionRoomReservationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/TypeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Controllers/TypeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Controllers/UserController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Middleware/CheckRole.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/ChooseRoomRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Requests/ChooseRoomRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ForgotPasswordRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Requests/ForgotPasswordRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/LoginRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Requests/LoginRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ResetPasswordRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Requests/ResetPasswordRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreCustomerRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Requests/StoreCustomerRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreImageRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Requests/StoreImageRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreRoomRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Requests/StoreRoomRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreRoomStatusRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Requests/StoreRoomStatusRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreTypeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Requests/StoreTypeRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreUserRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Requests/StoreUserRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateCustomerRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Http/Requests/UpdateCustomerRequest.php -------------------------------------------------------------------------------- /app/Models/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Models/Customer.php -------------------------------------------------------------------------------- /app/Models/Facility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Models/Facility.php -------------------------------------------------------------------------------- /app/Models/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Models/Image.php -------------------------------------------------------------------------------- /app/Models/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Models/Payment.php -------------------------------------------------------------------------------- /app/Models/Room.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Models/Room.php -------------------------------------------------------------------------------- /app/Models/RoomStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Models/RoomStatus.php -------------------------------------------------------------------------------- /app/Models/Transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Models/Transaction.php -------------------------------------------------------------------------------- /app/Models/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Models/Type.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Notifications/NewRoomReservationDownPayment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Notifications/NewRoomReservationDownPayment.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Repositories/Implementation/CustomerRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Repositories/Implementation/CustomerRepository.php -------------------------------------------------------------------------------- /app/Repositories/Implementation/ImageRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Repositories/Implementation/ImageRepository.php -------------------------------------------------------------------------------- /app/Repositories/Implementation/PaymentRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Repositories/Implementation/PaymentRepository.php -------------------------------------------------------------------------------- /app/Repositories/Implementation/ReservationRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Repositories/Implementation/ReservationRepository.php -------------------------------------------------------------------------------- /app/Repositories/Implementation/RoomRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Repositories/Implementation/RoomRepository.php -------------------------------------------------------------------------------- /app/Repositories/Implementation/RoomStatusRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Repositories/Implementation/RoomStatusRepository.php -------------------------------------------------------------------------------- /app/Repositories/Implementation/TransactionRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Repositories/Implementation/TransactionRepository.php -------------------------------------------------------------------------------- /app/Repositories/Implementation/TypeRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Repositories/Implementation/TypeRepository.php -------------------------------------------------------------------------------- /app/Repositories/Implementation/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Repositories/Implementation/UserRepository.php -------------------------------------------------------------------------------- /app/Repositories/Interface/CustomerRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Repositories/Interface/CustomerRepositoryInterface.php -------------------------------------------------------------------------------- /app/Repositories/Interface/ImageRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Repositories/Interface/ImageRepositoryInterface.php -------------------------------------------------------------------------------- /app/Repositories/Interface/PaymentRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Repositories/Interface/PaymentRepositoryInterface.php -------------------------------------------------------------------------------- /app/Repositories/Interface/ReservationRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Repositories/Interface/ReservationRepositoryInterface.php -------------------------------------------------------------------------------- /app/Repositories/Interface/RoomRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Repositories/Interface/RoomRepositoryInterface.php -------------------------------------------------------------------------------- /app/Repositories/Interface/RoomStatusRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Repositories/Interface/RoomStatusRepositoryInterface.php -------------------------------------------------------------------------------- /app/Repositories/Interface/TransactionRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Repositories/Interface/TransactionRepositoryInterface.php -------------------------------------------------------------------------------- /app/Repositories/Interface/TypeRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Repositories/Interface/TypeRepositoryInterface.php -------------------------------------------------------------------------------- /app/Repositories/Interface/UserRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/app/Repositories/Interface/UserRepositoryInterface.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/composer.lock -------------------------------------------------------------------------------- /config/activitylog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/config/activitylog.php -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/reverb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/config/reverb.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/.gitignore -------------------------------------------------------------------------------- /database/factories/CustomerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/factories/CustomerFactory.php -------------------------------------------------------------------------------- /database/factories/FacilityFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/factories/FacilityFactory.php -------------------------------------------------------------------------------- /database/factories/ImageFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/factories/ImageFactory.php -------------------------------------------------------------------------------- /database/factories/RoomFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/factories/RoomFactory.php -------------------------------------------------------------------------------- /database/factories/RoomStatusFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/factories/RoomStatusFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/0000_00_00_000000_create_websockets_statistics_entries_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/migrations/0000_00_00_000000_create_websockets_statistics_entries_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2021_04_09_022148_create_room_statuses_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/migrations/2021_04_09_022148_create_room_statuses_table.php -------------------------------------------------------------------------------- /database/migrations/2021_04_09_143243_create_customers_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/migrations/2021_04_09_143243_create_customers_table.php -------------------------------------------------------------------------------- /database/migrations/2021_04_09_143318_create_types_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/migrations/2021_04_09_143318_create_types_table.php -------------------------------------------------------------------------------- /database/migrations/2021_04_09_143320_create_rooms_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/migrations/2021_04_09_143320_create_rooms_table.php -------------------------------------------------------------------------------- /database/migrations/2021_04_09_143335_create_transactions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/migrations/2021_04_09_143335_create_transactions_table.php -------------------------------------------------------------------------------- /database/migrations/2021_04_09_143453_create_payments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/migrations/2021_04_09_143453_create_payments_table.php -------------------------------------------------------------------------------- /database/migrations/2021_04_09_153936_create_images_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/migrations/2021_04_09_153936_create_images_table.php -------------------------------------------------------------------------------- /database/migrations/2021_04_09_161146_create_facilities_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/migrations/2021_04_09_161146_create_facilities_table.php -------------------------------------------------------------------------------- /database/migrations/2021_04_09_161237_create_facility_room_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/migrations/2021_04_09_161237_create_facility_room_table.php -------------------------------------------------------------------------------- /database/migrations/2021_04_17_202643_add_status_to_payments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/migrations/2021_04_17_202643_add_status_to_payments_table.php -------------------------------------------------------------------------------- /database/migrations/2021_04_18_205922_create_notifications_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/migrations/2021_04_18_205922_create_notifications_table.php -------------------------------------------------------------------------------- /database/migrations/2024_09_24_191240_create_activity_log_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/migrations/2024_09_24_191240_create_activity_log_table.php -------------------------------------------------------------------------------- /database/migrations/2024_09_24_191241_add_event_column_to_activity_log_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/migrations/2024_09_24_191241_add_event_column_to_activity_log_table.php -------------------------------------------------------------------------------- /database/migrations/2024_09_24_191242_add_batch_uuid_column_to_activity_log_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/migrations/2024_09_24_191242_add_batch_uuid_column_to_activity_log_table.php -------------------------------------------------------------------------------- /database/seeders/CustomerSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/seeders/CustomerSeeder.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/FacilitySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/seeders/FacilitySeeder.php -------------------------------------------------------------------------------- /database/seeders/ImageSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/seeders/ImageSeeder.php -------------------------------------------------------------------------------- /database/seeders/RoomSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/seeders/RoomSeeder.php -------------------------------------------------------------------------------- /database/seeders/RoomStatusSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/seeders/RoomStatusSeeder.php -------------------------------------------------------------------------------- /database/seeders/TypeSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/seeders/TypeSeeder.php -------------------------------------------------------------------------------- /database/seeders/UserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/database/seeders/UserSeeder.php -------------------------------------------------------------------------------- /erd.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/erd.PNG -------------------------------------------------------------------------------- /example-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/example-b.png -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/example.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/phpunit.xml -------------------------------------------------------------------------------- /phpunit.xml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/phpunit.xml.bak -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/asset/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/public/asset/loader.gif -------------------------------------------------------------------------------- /public/css/readme.md: -------------------------------------------------------------------------------- 1 | #### Generated CSS 2 | -------------------------------------------------------------------------------- /public/erd.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/public/erd.PNG -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/img/default/default-room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/public/img/default/default-room.png -------------------------------------------------------------------------------- /public/img/default/default-user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/public/img/default/default-user.jpg -------------------------------------------------------------------------------- /public/img/logo/sip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/public/img/logo/sip.png -------------------------------------------------------------------------------- /public/img/room/default/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/public/img/room/default/default.jpg -------------------------------------------------------------------------------- /public/img/user/default/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/public/img/user/default/default.jpg -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/readme.md: -------------------------------------------------------------------------------- 1 | #### Generated CSS 2 | -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/style/css/stylelogin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/public/style/css/stylelogin.css -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/public/web.config -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/rector.php -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/components/ExampleComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/js/components/ExampleComponent.vue -------------------------------------------------------------------------------- /resources/js/echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/js/echo.js -------------------------------------------------------------------------------- /resources/js/pages/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/js/pages/dashboard.js -------------------------------------------------------------------------------- /resources/js/pages/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/js/pages/global.js -------------------------------------------------------------------------------- /resources/js/pages/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/js/pages/login.js -------------------------------------------------------------------------------- /resources/js/pages/room-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/js/pages/room-status.js -------------------------------------------------------------------------------- /resources/js/pages/room.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/js/pages/room.js -------------------------------------------------------------------------------- /resources/js/pages/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/js/pages/type.js -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/sass/_custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/sass/_custom.scss -------------------------------------------------------------------------------- /resources/sass/_datatable-professional.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/sass/_datatable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/sass/_datatable.scss -------------------------------------------------------------------------------- /resources/sass/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/sass/_navbar.scss -------------------------------------------------------------------------------- /resources/sass/_notification.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/sass/_notification.scss -------------------------------------------------------------------------------- /resources/sass/_progressindicatior.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/sass/_progressindicatior.scss -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/sass/_variables.scss -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/sass/app.scss -------------------------------------------------------------------------------- /resources/views/activity_log/all.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/activity_log/all.blade.php -------------------------------------------------------------------------------- /resources/views/activity_log/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/activity_log/index.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/confirm.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/auth/passwords/confirm.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/auth/passwords/email.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/reset-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/auth/reset-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/auth/verify.blade.php -------------------------------------------------------------------------------- /resources/views/customer/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/customer/create.blade.php -------------------------------------------------------------------------------- /resources/views/customer/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/customer/edit.blade.php -------------------------------------------------------------------------------- /resources/views/customer/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/customer/index.blade.php -------------------------------------------------------------------------------- /resources/views/customer/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/customer/show.blade.php -------------------------------------------------------------------------------- /resources/views/dashboard/chart_detail.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/dashboard/chart_detail.blade.php -------------------------------------------------------------------------------- /resources/views/dashboard/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/dashboard/index.blade.php -------------------------------------------------------------------------------- /resources/views/event/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/event/index.blade.php -------------------------------------------------------------------------------- /resources/views/event/listen.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/event/listen.blade.php -------------------------------------------------------------------------------- /resources/views/facility/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/facility/index.blade.php -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/notification/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/notification/index.blade.php -------------------------------------------------------------------------------- /resources/views/payment/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/payment/index.blade.php -------------------------------------------------------------------------------- /resources/views/payment/invoice.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/payment/invoice.blade.php -------------------------------------------------------------------------------- /resources/views/room/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/room/create.blade.php -------------------------------------------------------------------------------- /resources/views/room/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/room/edit.blade.php -------------------------------------------------------------------------------- /resources/views/room/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/room/index.blade.php -------------------------------------------------------------------------------- /resources/views/room/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/room/show.blade.php -------------------------------------------------------------------------------- /resources/views/roomstatus/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/roomstatus/create.blade.php -------------------------------------------------------------------------------- /resources/views/roomstatus/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/roomstatus/edit.blade.php -------------------------------------------------------------------------------- /resources/views/roomstatus/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/roomstatus/index.blade.php -------------------------------------------------------------------------------- /resources/views/template/auth.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/template/auth.blade.php -------------------------------------------------------------------------------- /resources/views/template/include/_footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/template/include/_footer.blade.php -------------------------------------------------------------------------------- /resources/views/template/include/_mobile-header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/template/include/_mobile-header.blade.php -------------------------------------------------------------------------------- /resources/views/template/include/_navbar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/template/include/_navbar.blade.php -------------------------------------------------------------------------------- /resources/views/template/include/_sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/template/include/_sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/template/include/_sidebarToggle.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/template/invoicemaster.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/template/invoicemaster.blade.php -------------------------------------------------------------------------------- /resources/views/template/master.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/template/master.blade.php -------------------------------------------------------------------------------- /resources/views/template/paginationlinks.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/template/paginationlinks.blade.php -------------------------------------------------------------------------------- /resources/views/transaction/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/transaction/index.blade.php -------------------------------------------------------------------------------- /resources/views/transaction/payment/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/transaction/payment/create.blade.php -------------------------------------------------------------------------------- /resources/views/transaction/reservation/chooseRoom.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/transaction/reservation/chooseRoom.blade.php -------------------------------------------------------------------------------- /resources/views/transaction/reservation/confirmation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/transaction/reservation/confirmation.blade.php -------------------------------------------------------------------------------- /resources/views/transaction/reservation/createIdentity.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/transaction/reservation/createIdentity.blade.php -------------------------------------------------------------------------------- /resources/views/transaction/reservation/pickFromCustomer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/transaction/reservation/pickFromCustomer.blade.php -------------------------------------------------------------------------------- /resources/views/transaction/reservation/progressbar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/transaction/reservation/progressbar.blade.php -------------------------------------------------------------------------------- /resources/views/transaction/reservation/viewCountPerson.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/transaction/reservation/viewCountPerson.blade.php -------------------------------------------------------------------------------- /resources/views/type/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/type/create.blade.php -------------------------------------------------------------------------------- /resources/views/type/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/type/edit.blade.php -------------------------------------------------------------------------------- /resources/views/type/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/type/index.blade.php -------------------------------------------------------------------------------- /resources/views/user/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/user/create.blade.php -------------------------------------------------------------------------------- /resources/views/user/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/user/edit.blade.php -------------------------------------------------------------------------------- /resources/views/user/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/user/index.blade.php -------------------------------------------------------------------------------- /resources/views/user/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/user/show.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/vendor/mail/html/button.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/vendor/mail/html/footer.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/vendor/mail/html/header.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/vendor/mail/html/layout.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/vendor/mail/html/message.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/panel.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/vendor/mail/html/panel.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/subcopy.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/vendor/mail/html/subcopy.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/table.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/vendor/mail/html/table.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/themes/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/vendor/mail/html/themes/default.css -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/vendor/mail/text/button.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/vendor/mail/text/header.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/vendor/mail/text/layout.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/vendor/mail/text/message.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/panel.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/table.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/notifications/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/resources/views/vendor/notifications/email.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/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/WailanTirajoh/Laravel-Hotel/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WailanTirajoh/Laravel-Hotel/HEAD/vite.config.js --------------------------------------------------------------------------------