├── .gitignore ├── .htaccess ├── 1312457_1312470.txt ├── HMS.iml ├── HMS.ipr ├── HMS ├── .env ├── .env.example ├── .env.txt ├── .gitattributes ├── .gitignore ├── .phpstorm.meta.php ├── Nightly.lnk ├── _ide_helper.php ├── app │ ├── Booking.php │ ├── Checkout.php │ ├── Console │ │ ├── Commands │ │ │ └── Inspire.php │ │ └── Kernel.php │ ├── Events │ │ └── Event.php │ ├── Exceptions │ │ └── Handler.php │ ├── Guest.php │ ├── Http │ │ ├── Controllers │ │ │ ├── Auth │ │ │ │ ├── AuthController.php │ │ │ │ └── PasswordController.php │ │ │ ├── Controller.php │ │ │ └── Manage │ │ │ │ ├── CheckoutController.php │ │ │ │ ├── GuestController.php │ │ │ │ ├── ManageController.php │ │ │ │ ├── PaymentController.php │ │ │ │ ├── ReportController.php │ │ │ │ ├── RoomController.php │ │ │ │ ├── ServiceController.php │ │ │ │ └── UserController.php │ │ ├── Kernel.php │ │ ├── Middleware │ │ │ ├── Authenticate.php │ │ │ ├── EncryptCookies.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ └── VerifyCsrfToken.php │ │ ├── Requests │ │ │ └── Request.php │ │ └── routes.php │ ├── Jobs │ │ └── Job.php │ ├── Listeners │ │ └── .gitkeep │ ├── Policies │ │ └── .gitkeep │ ├── Providers │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Role.php │ ├── RoleDetails.php │ ├── RomeType.php │ ├── Room.php │ ├── RoomFloor.php │ ├── RoomLocation.php │ ├── RoomRequirement.php │ ├── RoomType.php │ ├── RoomTypeRequirement.php │ ├── Service.php │ ├── ServiceType.php │ ├── Setting.php │ ├── Test.php │ └── User.php ├── artisan ├── bootstrap │ ├── app.php │ ├── autoload.php │ └── cache │ │ └── .gitignore ├── composer.json ├── composer.lock ├── config │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── compile.php │ ├── database.php │ ├── filesystems.php │ ├── mail.php │ ├── queue.php │ ├── services.php │ ├── session.php │ └── view.php ├── database │ ├── .gitignore │ ├── factories │ │ └── ModelFactory.php │ ├── migrations │ │ ├── .gitkeep │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2014_10_12_100000_create_password_resets_table.php │ │ ├── 2015_12_13_115404_create_guests_table.php │ │ ├── 2015_12_13_121846_create_roles_table.php │ │ ├── 2015_12_13_122325_create_role_details_table.php │ │ ├── 2015_12_13_123237_create_service_types_table.php │ │ ├── 2015_12_13_123402_create_services_table.php │ │ ├── 2015_12_14_065234_create_settings_table.php │ │ ├── 2015_12_14_070130_create_room_types_table.php │ │ ├── 2015_12_14_070511_create_room_requirements_table.php │ │ ├── 2015_12_14_072328_create_room_type_requirements_table.php │ │ ├── 2015_12_14_074618_create_rooms_table.php │ │ ├── 2015_12_14_090244_create_room_locations_table.php │ │ ├── 2016_01_10_100056_create_booking_table.php │ │ └── 2016_01_11_024847_create_checkout_table.php │ └── seeds │ │ ├── .gitkeep │ │ ├── DatabaseSeeder.php │ │ ├── RoleTableSeeder.php │ │ ├── RoomTypeTableSeeder.php │ │ └── UserTableSeeder.php ├── gulpfile.js ├── package.json ├── phpspec.yml ├── phpunit.xml ├── readme.md ├── resources │ ├── lang │ │ └── en │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ └── views │ │ ├── app.blade.php │ │ ├── auth │ │ ├── login.blade.php │ │ └── login3.blade.php │ │ ├── default │ │ ├── detailUser.blade.php │ │ ├── listBooking.blade.php │ │ ├── listGuest.blade.php │ │ ├── listRoom.blade.php │ │ ├── listRoomByIcon.blade.php │ │ ├── listRoomType.blade.php │ │ └── listUser.blade.php │ │ ├── errors │ │ └── 503.blade.php │ │ ├── layout.blade.php │ │ ├── manage │ │ └── adduser.blade.php │ │ ├── receiption │ │ ├── bookingroom.blade.php │ │ ├── checkoutPreview.blade.php │ │ └── viewRoom.blade.php │ │ ├── vendor │ │ └── .gitkeep │ │ └── welcome.blade.php ├── review │ └── huongdan.php ├── server.php ├── storage │ ├── app │ │ └── .gitignore │ ├── framework │ │ ├── .gitignore │ │ ├── cache │ │ │ └── .gitignore │ │ ├── sessions │ │ │ └── .gitignore │ │ └── views │ │ │ └── .gitignore │ └── logs │ │ └── .gitignore └── tests │ ├── ExampleTest.php │ └── TestCase.php ├── README.md ├── assets ├── css │ ├── metro-icons.css │ ├── metro-icons.min.css │ ├── metro-responsive.css │ ├── metro-responsive.min.css │ ├── metro-rtl.css │ ├── metro-rtl.min.css │ ├── metro-schemes.css │ ├── metro-schemes.min.css │ ├── metro.css │ ├── metro.min.css │ └── mystyle.css ├── fonts │ ├── metro.eot │ ├── metro.svg │ ├── metro.ttf │ ├── metro.woff │ └── selection.json ├── js │ ├── metro.js │ └── metro.min.js └── sass │ └── app.scss ├── favicon.ico ├── index.php ├── robots.txt └── typings └── angularjs └── angular.d.ts /.gitignore: -------------------------------------------------------------------------------- 1 | HMS.iws 2 | node_modules 3 | bower_components -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/.htaccess -------------------------------------------------------------------------------- /1312457_1312470.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/1312457_1312470.txt -------------------------------------------------------------------------------- /HMS.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS.iml -------------------------------------------------------------------------------- /HMS.ipr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS.ipr -------------------------------------------------------------------------------- /HMS/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/.env -------------------------------------------------------------------------------- /HMS/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/.env.example -------------------------------------------------------------------------------- /HMS/.env.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/.env.txt -------------------------------------------------------------------------------- /HMS/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/.gitattributes -------------------------------------------------------------------------------- /HMS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/.gitignore -------------------------------------------------------------------------------- /HMS/.phpstorm.meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/.phpstorm.meta.php -------------------------------------------------------------------------------- /HMS/Nightly.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/Nightly.lnk -------------------------------------------------------------------------------- /HMS/_ide_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/_ide_helper.php -------------------------------------------------------------------------------- /HMS/app/Booking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Booking.php -------------------------------------------------------------------------------- /HMS/app/Checkout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Checkout.php -------------------------------------------------------------------------------- /HMS/app/Console/Commands/Inspire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Console/Commands/Inspire.php -------------------------------------------------------------------------------- /HMS/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Console/Kernel.php -------------------------------------------------------------------------------- /HMS/app/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Events/Event.php -------------------------------------------------------------------------------- /HMS/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /HMS/app/Guest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Guest.php -------------------------------------------------------------------------------- /HMS/app/Http/Controllers/Auth/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Http/Controllers/Auth/AuthController.php -------------------------------------------------------------------------------- /HMS/app/Http/Controllers/Auth/PasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Http/Controllers/Auth/PasswordController.php -------------------------------------------------------------------------------- /HMS/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /HMS/app/Http/Controllers/Manage/CheckoutController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Http/Controllers/Manage/CheckoutController.php -------------------------------------------------------------------------------- /HMS/app/Http/Controllers/Manage/GuestController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Http/Controllers/Manage/GuestController.php -------------------------------------------------------------------------------- /HMS/app/Http/Controllers/Manage/ManageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Http/Controllers/Manage/ManageController.php -------------------------------------------------------------------------------- /HMS/app/Http/Controllers/Manage/PaymentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Http/Controllers/Manage/PaymentController.php -------------------------------------------------------------------------------- /HMS/app/Http/Controllers/Manage/ReportController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Http/Controllers/Manage/ReportController.php -------------------------------------------------------------------------------- /HMS/app/Http/Controllers/Manage/RoomController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Http/Controllers/Manage/RoomController.php -------------------------------------------------------------------------------- /HMS/app/Http/Controllers/Manage/ServiceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Http/Controllers/Manage/ServiceController.php -------------------------------------------------------------------------------- /HMS/app/Http/Controllers/Manage/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Http/Controllers/Manage/UserController.php -------------------------------------------------------------------------------- /HMS/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Http/Kernel.php -------------------------------------------------------------------------------- /HMS/app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /HMS/app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /HMS/app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /HMS/app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /HMS/app/Http/Requests/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Http/Requests/Request.php -------------------------------------------------------------------------------- /HMS/app/Http/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Http/routes.php -------------------------------------------------------------------------------- /HMS/app/Jobs/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Jobs/Job.php -------------------------------------------------------------------------------- /HMS/app/Listeners/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HMS/app/Policies/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HMS/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /HMS/app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /HMS/app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /HMS/app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /HMS/app/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Role.php -------------------------------------------------------------------------------- /HMS/app/RoleDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/RoleDetails.php -------------------------------------------------------------------------------- /HMS/app/RomeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/RomeType.php -------------------------------------------------------------------------------- /HMS/app/Room.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Room.php -------------------------------------------------------------------------------- /HMS/app/RoomFloor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/RoomFloor.php -------------------------------------------------------------------------------- /HMS/app/RoomLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/RoomLocation.php -------------------------------------------------------------------------------- /HMS/app/RoomRequirement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/RoomRequirement.php -------------------------------------------------------------------------------- /HMS/app/RoomType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/RoomType.php -------------------------------------------------------------------------------- /HMS/app/RoomTypeRequirement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/RoomTypeRequirement.php -------------------------------------------------------------------------------- /HMS/app/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Service.php -------------------------------------------------------------------------------- /HMS/app/ServiceType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/ServiceType.php -------------------------------------------------------------------------------- /HMS/app/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Setting.php -------------------------------------------------------------------------------- /HMS/app/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/Test.php -------------------------------------------------------------------------------- /HMS/app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/app/User.php -------------------------------------------------------------------------------- /HMS/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/artisan -------------------------------------------------------------------------------- /HMS/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/bootstrap/app.php -------------------------------------------------------------------------------- /HMS/bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/bootstrap/autoload.php -------------------------------------------------------------------------------- /HMS/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /HMS/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/composer.json -------------------------------------------------------------------------------- /HMS/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/composer.lock -------------------------------------------------------------------------------- /HMS/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/config/app.php -------------------------------------------------------------------------------- /HMS/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/config/auth.php -------------------------------------------------------------------------------- /HMS/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/config/broadcasting.php -------------------------------------------------------------------------------- /HMS/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/config/cache.php -------------------------------------------------------------------------------- /HMS/config/compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/config/compile.php -------------------------------------------------------------------------------- /HMS/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/config/database.php -------------------------------------------------------------------------------- /HMS/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/config/filesystems.php -------------------------------------------------------------------------------- /HMS/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/config/mail.php -------------------------------------------------------------------------------- /HMS/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/config/queue.php -------------------------------------------------------------------------------- /HMS/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/config/services.php -------------------------------------------------------------------------------- /HMS/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/config/session.php -------------------------------------------------------------------------------- /HMS/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/config/view.php -------------------------------------------------------------------------------- /HMS/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /HMS/database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /HMS/database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HMS/database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /HMS/database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /HMS/database/migrations/2015_12_13_115404_create_guests_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/database/migrations/2015_12_13_115404_create_guests_table.php -------------------------------------------------------------------------------- /HMS/database/migrations/2015_12_13_121846_create_roles_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/database/migrations/2015_12_13_121846_create_roles_table.php -------------------------------------------------------------------------------- /HMS/database/migrations/2015_12_13_122325_create_role_details_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/database/migrations/2015_12_13_122325_create_role_details_table.php -------------------------------------------------------------------------------- /HMS/database/migrations/2015_12_13_123237_create_service_types_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/database/migrations/2015_12_13_123237_create_service_types_table.php -------------------------------------------------------------------------------- /HMS/database/migrations/2015_12_13_123402_create_services_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/database/migrations/2015_12_13_123402_create_services_table.php -------------------------------------------------------------------------------- /HMS/database/migrations/2015_12_14_065234_create_settings_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/database/migrations/2015_12_14_065234_create_settings_table.php -------------------------------------------------------------------------------- /HMS/database/migrations/2015_12_14_070130_create_room_types_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/database/migrations/2015_12_14_070130_create_room_types_table.php -------------------------------------------------------------------------------- /HMS/database/migrations/2015_12_14_070511_create_room_requirements_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/database/migrations/2015_12_14_070511_create_room_requirements_table.php -------------------------------------------------------------------------------- /HMS/database/migrations/2015_12_14_072328_create_room_type_requirements_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/database/migrations/2015_12_14_072328_create_room_type_requirements_table.php -------------------------------------------------------------------------------- /HMS/database/migrations/2015_12_14_074618_create_rooms_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/database/migrations/2015_12_14_074618_create_rooms_table.php -------------------------------------------------------------------------------- /HMS/database/migrations/2015_12_14_090244_create_room_locations_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/database/migrations/2015_12_14_090244_create_room_locations_table.php -------------------------------------------------------------------------------- /HMS/database/migrations/2016_01_10_100056_create_booking_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/database/migrations/2016_01_10_100056_create_booking_table.php -------------------------------------------------------------------------------- /HMS/database/migrations/2016_01_11_024847_create_checkout_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/database/migrations/2016_01_11_024847_create_checkout_table.php -------------------------------------------------------------------------------- /HMS/database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HMS/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /HMS/database/seeds/RoleTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/database/seeds/RoleTableSeeder.php -------------------------------------------------------------------------------- /HMS/database/seeds/RoomTypeTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/database/seeds/RoomTypeTableSeeder.php -------------------------------------------------------------------------------- /HMS/database/seeds/UserTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/database/seeds/UserTableSeeder.php -------------------------------------------------------------------------------- /HMS/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/gulpfile.js -------------------------------------------------------------------------------- /HMS/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/package.json -------------------------------------------------------------------------------- /HMS/phpspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/phpspec.yml -------------------------------------------------------------------------------- /HMS/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/phpunit.xml -------------------------------------------------------------------------------- /HMS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/readme.md -------------------------------------------------------------------------------- /HMS/resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/resources/lang/en/auth.php -------------------------------------------------------------------------------- /HMS/resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /HMS/resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /HMS/resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/resources/lang/en/validation.php -------------------------------------------------------------------------------- /HMS/resources/views/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/resources/views/app.blade.php -------------------------------------------------------------------------------- /HMS/resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /HMS/resources/views/auth/login3.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/resources/views/auth/login3.blade.php -------------------------------------------------------------------------------- /HMS/resources/views/default/detailUser.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layout') 2 | -------------------------------------------------------------------------------- /HMS/resources/views/default/listBooking.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/resources/views/default/listBooking.blade.php -------------------------------------------------------------------------------- /HMS/resources/views/default/listGuest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/resources/views/default/listGuest.blade.php -------------------------------------------------------------------------------- /HMS/resources/views/default/listRoom.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/resources/views/default/listRoom.blade.php -------------------------------------------------------------------------------- /HMS/resources/views/default/listRoomByIcon.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/resources/views/default/listRoomByIcon.blade.php -------------------------------------------------------------------------------- /HMS/resources/views/default/listRoomType.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/resources/views/default/listRoomType.blade.php -------------------------------------------------------------------------------- /HMS/resources/views/default/listUser.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/resources/views/default/listUser.blade.php -------------------------------------------------------------------------------- /HMS/resources/views/errors/503.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/resources/views/errors/503.blade.php -------------------------------------------------------------------------------- /HMS/resources/views/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/resources/views/layout.blade.php -------------------------------------------------------------------------------- /HMS/resources/views/manage/adduser.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/resources/views/manage/adduser.blade.php -------------------------------------------------------------------------------- /HMS/resources/views/receiption/bookingroom.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/resources/views/receiption/bookingroom.blade.php -------------------------------------------------------------------------------- /HMS/resources/views/receiption/checkoutPreview.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/resources/views/receiption/checkoutPreview.blade.php -------------------------------------------------------------------------------- /HMS/resources/views/receiption/viewRoom.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/resources/views/receiption/viewRoom.blade.php -------------------------------------------------------------------------------- /HMS/resources/views/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HMS/resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /HMS/review/huongdan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/review/huongdan.php -------------------------------------------------------------------------------- /HMS/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/server.php -------------------------------------------------------------------------------- /HMS/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /HMS/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/storage/framework/.gitignore -------------------------------------------------------------------------------- /HMS/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /HMS/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /HMS/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /HMS/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /HMS/tests/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/tests/ExampleTest.php -------------------------------------------------------------------------------- /HMS/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/HMS/tests/TestCase.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/metro-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/assets/css/metro-icons.css -------------------------------------------------------------------------------- /assets/css/metro-icons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/assets/css/metro-icons.min.css -------------------------------------------------------------------------------- /assets/css/metro-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/assets/css/metro-responsive.css -------------------------------------------------------------------------------- /assets/css/metro-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/assets/css/metro-responsive.min.css -------------------------------------------------------------------------------- /assets/css/metro-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/assets/css/metro-rtl.css -------------------------------------------------------------------------------- /assets/css/metro-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/assets/css/metro-rtl.min.css -------------------------------------------------------------------------------- /assets/css/metro-schemes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/assets/css/metro-schemes.css -------------------------------------------------------------------------------- /assets/css/metro-schemes.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/assets/css/metro-schemes.min.css -------------------------------------------------------------------------------- /assets/css/metro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/assets/css/metro.css -------------------------------------------------------------------------------- /assets/css/metro.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/assets/css/metro.min.css -------------------------------------------------------------------------------- /assets/css/mystyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/assets/css/mystyle.css -------------------------------------------------------------------------------- /assets/fonts/metro.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/assets/fonts/metro.eot -------------------------------------------------------------------------------- /assets/fonts/metro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/assets/fonts/metro.svg -------------------------------------------------------------------------------- /assets/fonts/metro.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/assets/fonts/metro.ttf -------------------------------------------------------------------------------- /assets/fonts/metro.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/assets/fonts/metro.woff -------------------------------------------------------------------------------- /assets/fonts/selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/assets/fonts/selection.json -------------------------------------------------------------------------------- /assets/js/metro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/assets/js/metro.js -------------------------------------------------------------------------------- /assets/js/metro.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/assets/js/metro.min.js -------------------------------------------------------------------------------- /assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/assets/sass/app.scss -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/index.php -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /typings/angularjs/angular.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdxf/Hotel-Management-System/HEAD/typings/angularjs/angular.d.ts --------------------------------------------------------------------------------