{{ $about->title }}
5 |6 | {{ $about->text }} 7 |
8 |├── public ├── favicon.ico ├── robots.txt ├── img │ ├── hero.jpg │ └── brand │ │ ├── logo-1.png │ │ └── logo-2.png ├── mix-manifest.json ├── .htaccess └── index.php ├── database ├── .gitignore ├── seeders │ ├── RoleSeeder.php │ ├── ReservationSeeder.php │ ├── DatabaseSeeder.php │ ├── GalerySeeder.php │ ├── AboutSeeder.php │ ├── UserSeeder.php │ ├── AdminSeeder.php │ ├── ReceptionistSeeder.php │ ├── FacilityReviewSeeder.php │ └── RoomReviewSeeder.php ├── migrations │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2022_02_21_035815_create_abouts_table.php │ ├── 2022_02_18_033313_create_galeries_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2022_02_18_032011_create_room_has_facilities_table.php │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2022_02_18_031926_create_facilities_table.php │ ├── 2022_02_18_033115_create_room_reviews_table.php │ ├── 2022_02_18_031827_create_rooms_table.php │ ├── 2022_02_18_033227_create_facility_reviews_table.php │ └── 2022_02_18_032108_create_reservations_table.php └── factories │ └── ReservationFactory.php ├── bootstrap ├── cache │ └── .gitignore └── app.php ├── storage ├── logs │ └── .gitignore ├── app │ ├── public │ │ └── .gitignore │ └── .gitignore ├── framework │ ├── testing │ │ └── .gitignore │ ├── views │ │ └── .gitignore │ ├── cache │ │ ├── data │ │ │ └── .gitignore │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── .gitignore └── fonts │ ├── poppins_500_1321f10338f0e66434dee30474b658c6.ttf │ ├── poppins_600_b9eb07b2d5e0d6ec53e0c7454d6da738.ttf │ ├── poppins_800_a738af64a68a81d69351fd2852c747fa.ttf │ ├── poppins_900_9cefc0eae02097ad98f530c2cc1a3051.ttf │ ├── poppins_bold_539ab661c3f4224a64ba7fb9f8385177.ttf │ ├── poppins_italic_8e519e1cd8995931e6b5447247f375f3.ttf │ ├── poppins_normal_a7d2460db3514249ea0808da6101365c.ttf │ ├── quicksand_300_17927a71ba5c5ac68488522d7ef3a372.ttf │ ├── quicksand_500_9b172ae5c8ff3d067dd6827b5b221d41.ttf │ ├── quicksand_600_bedce1e68f2c48681070bd30620ff411.ttf │ ├── quicksand_bold_f79ce65afeac35a6f4a687d626f8ceba.ttf │ ├── quicksand_normal_004b3e7d8a21eabe3a9b356b2ce788b8.ttf │ ├── poppins_500_italic_dbc1d05fdcb2e525d3b7bf59ea8e348b.ttf │ ├── poppins_600_italic_8cf665432d4a9aaeac4cc5ce36521613.ttf │ ├── poppins_800_italic_9c2bea87c3e399f4527f575ac7034380.ttf │ ├── poppins_900_italic_8251479c5063296fe468f2fd3fab720e.ttf │ └── poppins_bold_italic_89b1cde9b84ed81fef9dbbe6fa9405aa.ttf ├── resources ├── js │ ├── app.js │ └── bootstrap.js ├── views │ ├── components │ │ ├── label.blade.php │ │ ├── auth-session-status.blade.php │ │ ├── dropdown-link.blade.php │ │ ├── input.blade.php │ │ ├── auth-card.blade.php │ │ ├── table.blade.php │ │ ├── button.blade.php │ │ ├── auth-validation-errors.blade.php │ │ ├── nav-link.blade.php │ │ ├── responsive-nav-link.blade.php │ │ ├── dropdown.blade.php │ │ └── application-logo.blade.php │ ├── layouts │ │ └── guest.blade.php │ ├── livewire │ │ ├── about.blade.php │ │ ├── room │ │ │ ├── review │ │ │ │ └── edit.blade.php │ │ │ └── index.blade.php │ │ ├── facility │ │ │ └── review │ │ │ │ └── edit.blade.php │ │ └── dashboard │ │ │ ├── user │ │ │ └── index.blade.php │ │ │ └── admin │ │ │ └── galery │ │ │ └── create.blade.php │ └── auth │ │ ├── confirm-password.blade.php │ │ ├── forgot-password.blade.php │ │ ├── verify-email.blade.php │ │ ├── reset-password.blade.php │ │ ├── login.blade.php │ │ └── register.blade.php └── css │ └── app.css ├── .gitattributes ├── tests ├── TestCase.php ├── Unit │ └── ExampleTest.php ├── Feature │ ├── ExampleTest.php │ └── Auth │ │ ├── RegistrationTest.php │ │ ├── AuthenticationTest.php │ │ ├── PasswordConfirmationTest.php │ │ ├── EmailVerificationTest.php │ │ └── PasswordResetTest.php └── CreatesApplication.php ├── .styleci.yml ├── .gitignore ├── app ├── Models │ ├── About.php │ ├── Galery.php │ ├── RoomHasFacility.php │ ├── RoomReview.php │ ├── FacilityReview.php │ ├── Facility.php │ ├── Room.php │ ├── Reservation.php │ └── User.php ├── Http │ ├── Middleware │ │ ├── EncryptCookies.php │ │ ├── VerifyCsrfToken.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── TrustHosts.php │ │ ├── TrimStrings.php │ │ ├── Authenticate.php │ │ ├── TrustProxies.php │ │ └── RedirectIfAuthenticated.php │ ├── Livewire │ │ ├── About.php │ │ ├── Room │ │ │ ├── Index.php │ │ │ └── Review │ │ │ │ ├── Edit.php │ │ │ │ └── Create.php │ │ ├── Dashboard │ │ │ ├── User │ │ │ │ ├── Reservation │ │ │ │ │ ├── Proof.php │ │ │ │ │ └── Index.php │ │ │ │ ├── Index.php │ │ │ │ └── Review │ │ │ │ │ ├── Room │ │ │ │ │ └── Index.php │ │ │ │ │ └── Facility │ │ │ │ │ └── Index.php │ │ │ ├── Receptionist │ │ │ │ ├── Reservation │ │ │ │ │ ├── Proof.php │ │ │ │ │ └── Index.php │ │ │ │ └── Index.php │ │ │ └── Admin │ │ │ │ ├── Galery │ │ │ │ ├── Create.php │ │ │ │ └── Index.php │ │ │ │ ├── Facility │ │ │ │ ├── Create.php │ │ │ │ ├── Index.php │ │ │ │ └── Edit.php │ │ │ │ ├── Room │ │ │ │ ├── Index.php │ │ │ │ ├── Create.php │ │ │ │ └── Edit.php │ │ │ │ ├── Index.php │ │ │ │ └── User │ │ │ │ └── Create.php │ │ └── Facility │ │ │ ├── Index.php │ │ │ └── Review │ │ │ ├── Edit.php │ │ │ └── Create.php │ ├── Controllers │ │ ├── Controller.php │ │ └── Auth │ │ │ ├── EmailVerificationPromptController.php │ │ │ ├── EmailVerificationNotificationController.php │ │ │ ├── PasswordResetLinkController.php │ │ │ ├── ConfirmablePasswordController.php │ │ │ ├── AuthenticatedSessionController.php │ │ │ ├── VerifyEmailController.php │ │ │ ├── RegisteredUserController.php │ │ │ └── NewPasswordController.php │ ├── Requests │ │ └── Auth │ │ │ └── LoginRequest.php │ └── Kernel.php ├── View │ └── Components │ │ ├── AppLayout.php │ │ ├── GuestLayout.php │ │ ├── LayoutMain.php │ │ └── Nav.php ├── Providers │ ├── BroadcastServiceProvider.php │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php └── Rules │ └── PhoneNumber.php ├── .editorconfig ├── lang ├── en │ ├── pagination.php │ ├── auth.php │ └── passwords.php └── en.json ├── routes ├── channels.php ├── api.php ├── console.php └── auth.php ├── tailwind.config.js ├── webpack.mix.js ├── package.json ├── config ├── cors.php ├── services.php ├── view.php ├── hashing.php ├── broadcasting.php ├── sanctum.php ├── filesystems.php └── queue.php ├── .env.example ├── phpunit.xml ├── artisan └── composer.json /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /public/img/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmyxpow/hollux/HEAD/public/img/hero.jpg -------------------------------------------------------------------------------- /public/img/brand/logo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmyxpow/hollux/HEAD/public/img/brand/logo-1.png -------------------------------------------------------------------------------- /public/img/brand/logo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmyxpow/hollux/HEAD/public/img/brand/logo-2.png -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "/js/app.js": "/js/app.js", 3 | "/css/app.css": "/css/app.css" 4 | } 5 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | 3 | import Alpine from 'alpinejs'; 4 | 5 | window.Alpine = Alpine; 6 | 7 | Alpine.start(); 8 | -------------------------------------------------------------------------------- /storage/fonts/poppins_500_1321f10338f0e66434dee30474b658c6.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmyxpow/hollux/HEAD/storage/fonts/poppins_500_1321f10338f0e66434dee30474b658c6.ttf -------------------------------------------------------------------------------- /storage/fonts/poppins_600_b9eb07b2d5e0d6ec53e0c7454d6da738.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmyxpow/hollux/HEAD/storage/fonts/poppins_600_b9eb07b2d5e0d6ec53e0c7454d6da738.ttf -------------------------------------------------------------------------------- /storage/fonts/poppins_800_a738af64a68a81d69351fd2852c747fa.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmyxpow/hollux/HEAD/storage/fonts/poppins_800_a738af64a68a81d69351fd2852c747fa.ttf -------------------------------------------------------------------------------- /storage/fonts/poppins_900_9cefc0eae02097ad98f530c2cc1a3051.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmyxpow/hollux/HEAD/storage/fonts/poppins_900_9cefc0eae02097ad98f530c2cc1a3051.ttf -------------------------------------------------------------------------------- /storage/fonts/poppins_bold_539ab661c3f4224a64ba7fb9f8385177.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmyxpow/hollux/HEAD/storage/fonts/poppins_bold_539ab661c3f4224a64ba7fb9f8385177.ttf -------------------------------------------------------------------------------- /storage/fonts/poppins_italic_8e519e1cd8995931e6b5447247f375f3.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmyxpow/hollux/HEAD/storage/fonts/poppins_italic_8e519e1cd8995931e6b5447247f375f3.ttf -------------------------------------------------------------------------------- /storage/fonts/poppins_normal_a7d2460db3514249ea0808da6101365c.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmyxpow/hollux/HEAD/storage/fonts/poppins_normal_a7d2460db3514249ea0808da6101365c.ttf -------------------------------------------------------------------------------- /storage/fonts/quicksand_300_17927a71ba5c5ac68488522d7ef3a372.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmyxpow/hollux/HEAD/storage/fonts/quicksand_300_17927a71ba5c5ac68488522d7ef3a372.ttf -------------------------------------------------------------------------------- /storage/fonts/quicksand_500_9b172ae5c8ff3d067dd6827b5b221d41.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmyxpow/hollux/HEAD/storage/fonts/quicksand_500_9b172ae5c8ff3d067dd6827b5b221d41.ttf -------------------------------------------------------------------------------- /storage/fonts/quicksand_600_bedce1e68f2c48681070bd30620ff411.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmyxpow/hollux/HEAD/storage/fonts/quicksand_600_bedce1e68f2c48681070bd30620ff411.ttf -------------------------------------------------------------------------------- /storage/fonts/quicksand_bold_f79ce65afeac35a6f4a687d626f8ceba.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmyxpow/hollux/HEAD/storage/fonts/quicksand_bold_f79ce65afeac35a6f4a687d626f8ceba.ttf -------------------------------------------------------------------------------- /storage/fonts/quicksand_normal_004b3e7d8a21eabe3a9b356b2ce788b8.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmyxpow/hollux/HEAD/storage/fonts/quicksand_normal_004b3e7d8a21eabe3a9b356b2ce788b8.ttf -------------------------------------------------------------------------------- /storage/fonts/poppins_500_italic_dbc1d05fdcb2e525d3b7bf59ea8e348b.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmyxpow/hollux/HEAD/storage/fonts/poppins_500_italic_dbc1d05fdcb2e525d3b7bf59ea8e348b.ttf -------------------------------------------------------------------------------- /storage/fonts/poppins_600_italic_8cf665432d4a9aaeac4cc5ce36521613.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmyxpow/hollux/HEAD/storage/fonts/poppins_600_italic_8cf665432d4a9aaeac4cc5ce36521613.ttf -------------------------------------------------------------------------------- /storage/fonts/poppins_800_italic_9c2bea87c3e399f4527f575ac7034380.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmyxpow/hollux/HEAD/storage/fonts/poppins_800_italic_9c2bea87c3e399f4527f575ac7034380.ttf -------------------------------------------------------------------------------- /storage/fonts/poppins_900_italic_8251479c5063296fe468f2fd3fab720e.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmyxpow/hollux/HEAD/storage/fonts/poppins_900_italic_8251479c5063296fe468f2fd3fab720e.ttf -------------------------------------------------------------------------------- /storage/fonts/poppins_bold_italic_89b1cde9b84ed81fef9dbbe6fa9405aa.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimmyxpow/hollux/HEAD/storage/fonts/poppins_bold_italic_89b1cde9b84ed81fef9dbbe6fa9405aa.ttf -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | compiled.php 2 | config.php 3 | down 4 | events.scanned.php 5 | maintenance.php 6 | routes.php 7 | routes.scanned.php 8 | schedule-* 9 | services.json 10 | -------------------------------------------------------------------------------- /resources/views/components/label.blade.php: -------------------------------------------------------------------------------- 1 | @props(['value']) 2 | 3 | 6 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.blade.php diff=html 4 | *.css diff=css 5 | *.html diff=html 6 | *.md diff=markdown 7 | *.php diff=php 8 | 9 | /.github export-ignore 10 | CHANGELOG.md export-ignore 11 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | merge(['class' => 'font-medium text-sm text-green-600']) }}> 5 | {{ $status }} 6 | 7 | @endif 8 | -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | php: 2 | preset: laravel 3 | version: 8 4 | disabled: 5 | - no_unused_imports 6 | finder: 7 | not-name: 8 | - index.php 9 | js: 10 | finder: 11 | not-name: 12 | - webpack.mix.js 13 | css: true 14 | -------------------------------------------------------------------------------- /resources/views/components/dropdown-link.blade.php: -------------------------------------------------------------------------------- 1 | merge(['class' => 'block px-4 py-2 text-sm leading-5 text-gray-700 hover:bg-gray-100 focus:outline-none focus:bg-gray-100 transition duration-150 ease-in-out']) }}>{{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/components/input.blade.php: -------------------------------------------------------------------------------- 1 | @props(['disabled' => false]) 2 | 3 | merge(['class' => 'rounded-md shadow-sm border-gray-300 focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50']) !!}> 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /public/hot 3 | /public/storage 4 | /storage/*.key 5 | /vendor 6 | .env 7 | .env.backup 8 | .phpunit.result.cache 9 | docker-compose.override.yml 10 | Homestead.json 11 | Homestead.yaml 12 | npm-debug.log 13 | yarn-error.log 14 | /.idea 15 | /.vscode 16 | -------------------------------------------------------------------------------- /app/Models/About.php: -------------------------------------------------------------------------------- 1 | 2 |
6 | {{ $about->text }} 7 |
8 |We have a choice of {{ $rooms->count() }} different room types that you can choose according to your needs
6 |40 | {{ $room->description }} 41 |
42 |There is nothing here
47 | @endforelse 48 |