├── .idea ├── .name ├── misc.xml ├── scopes │ └── scope_settings.xml ├── encodings.xml ├── vcs.xml ├── modules.xml └── hotel.iml ├── public ├── favicon.ico ├── robots.txt ├── hotel │ ├── .bowerrc │ ├── app │ │ ├── view1 │ │ │ ├── view1.html │ │ │ ├── view1.js │ │ │ └── view1_test.js │ │ ├── view2 │ │ │ ├── view2.html │ │ │ ├── view2.js │ │ │ └── view2_test.js │ │ ├── components │ │ │ └── version │ │ │ │ ├── version.js │ │ │ │ ├── version-directive.js │ │ │ │ ├── interpolate-filter.js │ │ │ │ ├── version_test.js │ │ │ │ ├── interpolate-filter_test.js │ │ │ │ └── version-directive_test.js │ │ ├── app.js │ │ ├── book │ │ │ ├── book.js │ │ │ ├── finalize.js │ │ │ ├── book.html │ │ │ └── finalize.html │ │ ├── room_admin │ │ │ ├── room_admin.js │ │ │ └── room_admin.html │ │ ├── payment │ │ │ ├── pay.js │ │ │ └── pay.html │ │ ├── index.html │ │ ├── index-async.html │ │ └── app.css │ ├── .gitignore │ ├── .jshintrc │ ├── e2e-tests │ │ ├── protractor.conf.js │ │ └── scenarios.js │ ├── .travis.yml │ ├── bower.json │ ├── karma.conf.js │ ├── LICENSE │ ├── package.json │ └── README.md ├── .htaccess └── index.php ├── app ├── Listeners │ └── .gitkeep ├── Events │ └── Event.php ├── Http │ ├── Requests │ │ └── Request.php │ ├── Controllers │ │ ├── Controller.php │ │ ├── RoomTypeController.php │ │ ├── Auth │ │ │ ├── PasswordController.php │ │ │ └── AuthController.php │ │ ├── PaymentController.php │ │ ├── ReservationController.php │ │ └── RoomCalendarController.php │ ├── Middleware │ │ ├── EncryptCookies.php │ │ ├── VerifyCsrfToken.php │ │ ├── RedirectIfAuthenticated.php │ │ └── Authenticate.php │ ├── Kernel.php │ └── routes.php ├── RoomType.php ├── RoomCalendar.php ├── Customer.php ├── ReservationNight.php ├── Reservation.php ├── Providers │ ├── AppServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Jobs │ └── Job.php ├── Console │ ├── Commands │ │ └── Inspire.php │ └── Kernel.php ├── User.php └── Exceptions │ └── Handler.php ├── database ├── seeds │ ├── .gitkeep │ └── DatabaseSeeder.php ├── migrations │ ├── .gitkeep │ ├── 2015_08_04_170359_create_table_customers.php │ ├── 2015_08_04_170329_create_table_reservation_nights.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2015_08_04_170246_create_table_room_type.php │ ├── 2015_08_04_170254_create_table_reservations.php │ ├── 2015_08_04_170250_create_table_room_calendar.php │ └── 2014_10_12_000000_create_users_table.php ├── .gitignore └── factories │ └── ModelFactory.php ├── resources ├── views │ ├── vendor │ │ └── .gitkeep │ ├── welcome.blade.php │ └── errors │ │ └── 503.blade.php ├── assets │ └── sass │ │ └── app.scss └── lang │ └── en │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── storage ├── app │ └── .gitignore ├── logs │ └── .gitignore └── framework │ ├── cache │ └── .gitignore │ ├── views │ └── .gitignore │ ├── sessions │ └── .gitignore │ └── .gitignore ├── bootstrap ├── cache │ └── .gitignore ├── autoload.php └── app.php ├── .gitattributes ├── phpspec.yml ├── package.json ├── .gitignore ├── .env.example ├── tests ├── ExampleTest.php └── TestCase.php ├── gulpfile.js ├── server.php ├── readme.md ├── phpunit.xml ├── config ├── services.php ├── compile.php ├── view.php ├── broadcasting.php ├── cache.php ├── auth.php ├── filesystems.php ├── queue.php ├── database.php ├── mail.php ├── session.php └── app.php ├── composer.json └── artisan /.idea/.name: -------------------------------------------------------------------------------- 1 | hotel -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Listeners/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /resources/views/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/hotel/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } -------------------------------------------------------------------------------- /public/hotel/app/view1/view1.html: -------------------------------------------------------------------------------- 1 |
This is the partial for view 1.
2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.less linguist-vendored 4 | -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | // @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap"; 2 | 3 | -------------------------------------------------------------------------------- /app/Events/Event.php: -------------------------------------------------------------------------------- 1 | 2 |This is the partial for view 2.
2 |3 | Showing of 'interpolate' filter: 4 | {{ 'Current version is v%VERSION%.' | interpolate }} 5 |
6 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 |Total price : {{room_type.total_price}}
44 |{{message}}
44 |