├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── README.md ├── app ├── Console │ └── Kernel.php ├── Enums │ ├── TableLocation.php │ └── TableStatus.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ ├── AdminController.php │ │ │ ├── CategoryController.php │ │ │ ├── MenuController.php │ │ │ ├── ReservationController.php │ │ │ └── TableController.php │ │ ├── Auth │ │ │ ├── AuthenticatedSessionController.php │ │ │ ├── ConfirmablePasswordController.php │ │ │ ├── EmailVerificationNotificationController.php │ │ │ ├── EmailVerificationPromptController.php │ │ │ ├── NewPasswordController.php │ │ │ ├── PasswordResetLinkController.php │ │ │ ├── RegisteredUserController.php │ │ │ └── VerifyEmailController.php │ │ ├── Controller.php │ │ └── Frontend │ │ │ ├── CategoryController.php │ │ │ ├── MenuController.php │ │ │ ├── ReservationController.php │ │ │ └── WelcomeController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Admin.php │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ ├── Auth │ │ └── LoginRequest.php │ │ ├── CategoryStoreRequest.php │ │ ├── MenuStoreRequest.php │ │ ├── ReservationStoreRequest.php │ │ └── TableStoreRequest.php ├── Models │ ├── Category.php │ ├── Menu.php │ ├── Reservation.php │ ├── Table.php │ └── User.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Rules │ ├── DateBetween.php │ └── TimeBetween.php └── View │ └── Components │ ├── AdminLayout.php │ ├── AppLayout.php │ └── GuestLayout.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── flare.php ├── hashing.php ├── ignition.php ├── logging.php ├── mail.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php ├── tinker.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 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 │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2022_03_11_150706_create_categories_table.php │ ├── 2022_03_11_150725_create_menus_table.php │ ├── 2022_03_11_150736_create_tables_table.php │ ├── 2022_03_11_150750_create_reservations_table.php │ └── 2022_03_16_135424_create_category_menu_table.php └── seeders │ ├── Admin.php │ └── DatabaseSeeder.php ├── docker ├── 7.4 │ ├── Dockerfile │ ├── php.ini │ ├── start-container │ └── supervisord.conf ├── 8.0 │ ├── Dockerfile │ ├── php.ini │ ├── start-container │ └── supervisord.conf └── 8.1 │ ├── Dockerfile │ ├── php.ini │ ├── start-container │ └── supervisord.conf ├── lang ├── en.json └── en │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ └── app.css ├── favicon.ico ├── index.php ├── js │ └── app.js ├── mix-manifest.json └── robots.txt ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js └── views │ ├── admin │ ├── categories │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── index.blade.php │ ├── menus │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── reservations │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ └── tables │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── auth │ ├── confirm-password.blade.php │ ├── forgot-password.blade.php │ ├── login.blade.php │ ├── register.blade.php │ ├── reset-password.blade.php │ └── verify-email.blade.php │ ├── categories │ ├── index.blade.php │ └── show.blade.php │ ├── components │ ├── admin-nav-link.blade.php │ ├── application-logo.blade.php │ ├── auth-card.blade.php │ ├── auth-session-status.blade.php │ ├── auth-validation-errors.blade.php │ ├── button.blade.php │ ├── dropdown-link.blade.php │ ├── dropdown.blade.php │ ├── input.blade.php │ ├── label.blade.php │ ├── nav-link.blade.php │ └── responsive-nav-link.blade.php │ ├── dashboard.blade.php │ ├── errors │ ├── 401.blade.php │ ├── 403.blade.php │ ├── 404.blade.php │ ├── 419.blade.php │ ├── 429.blade.php │ ├── 500.blade.php │ ├── 503.blade.php │ ├── layout.blade.php │ └── minimal.blade.php │ ├── layouts │ ├── admin.blade.php │ ├── app.blade.php │ ├── guest.blade.php │ └── navigation.blade.php │ ├── menus │ └── index.blade.php │ ├── reservations │ ├── step-one.blade.php │ └── step-two.blade.php │ ├── thankyou.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 │ └── pagination │ │ ├── bootstrap-4.blade.php │ │ ├── bootstrap-5.blade.php │ │ ├── default.blade.php │ │ ├── semantic-ui.blade.php │ │ ├── simple-bootstrap-4.blade.php │ │ ├── simple-bootstrap-5.blade.php │ │ ├── simple-default.blade.php │ │ ├── simple-tailwind.blade.php │ │ └── tailwind.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── auth.php ├── channels.php ├── console.php └── web.php ├── sail ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ ├── Auth │ │ ├── AuthenticationTest.php │ │ ├── EmailVerificationTest.php │ │ ├── PasswordConfirmationTest.php │ │ ├── PasswordResetTest.php │ │ └── RegistrationTest.php │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/.styleci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Enums/TableLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Enums/TableLocation.php -------------------------------------------------------------------------------- /app/Enums/TableStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Enums/TableStatus.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Controllers/Admin/AdminController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/CategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Controllers/Admin/CategoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/MenuController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Controllers/Admin/MenuController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/ReservationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Controllers/Admin/ReservationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/TableController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Controllers/Admin/TableController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/AuthenticatedSessionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Controllers/Auth/AuthenticatedSessionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ConfirmablePasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Controllers/Auth/ConfirmablePasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationNotificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Controllers/Auth/EmailVerificationNotificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationPromptController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Controllers/Auth/EmailVerificationPromptController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/NewPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Controllers/Auth/NewPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/PasswordResetLinkController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Controllers/Auth/PasswordResetLinkController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisteredUserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Controllers/Auth/RegisteredUserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerifyEmailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Controllers/Auth/VerifyEmailController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/Frontend/CategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Controllers/Frontend/CategoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Frontend/MenuController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Controllers/Frontend/MenuController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Frontend/ReservationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Controllers/Frontend/ReservationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Frontend/WelcomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Controllers/Frontend/WelcomeController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Middleware/Admin.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/Auth/LoginRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Requests/Auth/LoginRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/CategoryStoreRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Requests/CategoryStoreRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/MenuStoreRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Requests/MenuStoreRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ReservationStoreRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Requests/ReservationStoreRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/TableStoreRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Http/Requests/TableStoreRequest.php -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Models/Menu.php -------------------------------------------------------------------------------- /app/Models/Reservation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Models/Reservation.php -------------------------------------------------------------------------------- /app/Models/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Models/Table.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Rules/DateBetween.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Rules/DateBetween.php -------------------------------------------------------------------------------- /app/Rules/TimeBetween.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/Rules/TimeBetween.php -------------------------------------------------------------------------------- /app/View/Components/AdminLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/View/Components/AdminLayout.php -------------------------------------------------------------------------------- /app/View/Components/AppLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/View/Components/AppLayout.php -------------------------------------------------------------------------------- /app/View/Components/GuestLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/app/View/Components/GuestLayout.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/flare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/config/flare.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/ignition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/config/ignition.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/config/session.php -------------------------------------------------------------------------------- /config/tinker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/config/tinker.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/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/tonyxhepa/laravel-restaurant-reservation/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/tonyxhepa/laravel-restaurant-reservation/HEAD/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2022_03_11_150706_create_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/database/migrations/2022_03_11_150706_create_categories_table.php -------------------------------------------------------------------------------- /database/migrations/2022_03_11_150725_create_menus_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/database/migrations/2022_03_11_150725_create_menus_table.php -------------------------------------------------------------------------------- /database/migrations/2022_03_11_150736_create_tables_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/database/migrations/2022_03_11_150736_create_tables_table.php -------------------------------------------------------------------------------- /database/migrations/2022_03_11_150750_create_reservations_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/database/migrations/2022_03_11_150750_create_reservations_table.php -------------------------------------------------------------------------------- /database/migrations/2022_03_16_135424_create_category_menu_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/database/migrations/2022_03_16_135424_create_category_menu_table.php -------------------------------------------------------------------------------- /database/seeders/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/database/seeders/Admin.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /docker/7.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/docker/7.4/Dockerfile -------------------------------------------------------------------------------- /docker/7.4/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/docker/7.4/php.ini -------------------------------------------------------------------------------- /docker/7.4/start-container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/docker/7.4/start-container -------------------------------------------------------------------------------- /docker/7.4/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/docker/7.4/supervisord.conf -------------------------------------------------------------------------------- /docker/8.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/docker/8.0/Dockerfile -------------------------------------------------------------------------------- /docker/8.0/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/docker/8.0/php.ini -------------------------------------------------------------------------------- /docker/8.0/start-container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/docker/8.0/start-container -------------------------------------------------------------------------------- /docker/8.0/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/docker/8.0/supervisord.conf -------------------------------------------------------------------------------- /docker/8.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/docker/8.1/Dockerfile -------------------------------------------------------------------------------- /docker/8.1/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/docker/8.1/php.ini -------------------------------------------------------------------------------- /docker/8.1/start-container: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/docker/8.1/start-container -------------------------------------------------------------------------------- /docker/8.1/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/docker/8.1/supervisord.conf -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/lang/en.json -------------------------------------------------------------------------------- /lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/lang/en/auth.php -------------------------------------------------------------------------------- /lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/lang/en/pagination.php -------------------------------------------------------------------------------- /lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/lang/en/passwords.php -------------------------------------------------------------------------------- /lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/lang/en/validation.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/views/admin/categories/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/admin/categories/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/categories/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/admin/categories/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/categories/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/admin/categories/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/admin/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/menus/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/admin/menus/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/menus/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/admin/menus/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/menus/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/admin/menus/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/reservations/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/admin/reservations/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/reservations/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/admin/reservations/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/reservations/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/admin/reservations/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/tables/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/admin/tables/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/tables/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/admin/tables/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/tables/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/admin/tables/index.blade.php -------------------------------------------------------------------------------- /resources/views/auth/confirm-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/auth/confirm-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/forgot-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/auth/forgot-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/reset-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/auth/reset-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify-email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/auth/verify-email.blade.php -------------------------------------------------------------------------------- /resources/views/categories/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/categories/index.blade.php -------------------------------------------------------------------------------- /resources/views/categories/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/categories/show.blade.php -------------------------------------------------------------------------------- /resources/views/components/admin-nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/components/admin-nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/application-logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/components/application-logo.blade.php -------------------------------------------------------------------------------- /resources/views/components/auth-card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/components/auth-card.blade.php -------------------------------------------------------------------------------- /resources/views/components/auth-session-status.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/components/auth-session-status.blade.php -------------------------------------------------------------------------------- /resources/views/components/auth-validation-errors.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/components/auth-validation-errors.blade.php -------------------------------------------------------------------------------- /resources/views/components/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/components/button.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/components/dropdown-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/components/dropdown.blade.php -------------------------------------------------------------------------------- /resources/views/components/input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/components/input.blade.php -------------------------------------------------------------------------------- /resources/views/components/label.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/components/label.blade.php -------------------------------------------------------------------------------- /resources/views/components/nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/components/nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/responsive-nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/components/responsive-nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/errors/401.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/errors/401.blade.php -------------------------------------------------------------------------------- /resources/views/errors/403.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/errors/403.blade.php -------------------------------------------------------------------------------- /resources/views/errors/404.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/errors/404.blade.php -------------------------------------------------------------------------------- /resources/views/errors/419.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/errors/419.blade.php -------------------------------------------------------------------------------- /resources/views/errors/429.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/errors/429.blade.php -------------------------------------------------------------------------------- /resources/views/errors/500.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/errors/500.blade.php -------------------------------------------------------------------------------- /resources/views/errors/503.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/errors/503.blade.php -------------------------------------------------------------------------------- /resources/views/errors/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/errors/layout.blade.php -------------------------------------------------------------------------------- /resources/views/errors/minimal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/errors/minimal.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/admin.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/layouts/admin.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/guest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/layouts/guest.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/navigation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/layouts/navigation.blade.php -------------------------------------------------------------------------------- /resources/views/menus/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/menus/index.blade.php -------------------------------------------------------------------------------- /resources/views/reservations/step-one.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/reservations/step-one.blade.php -------------------------------------------------------------------------------- /resources/views/reservations/step-two.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/reservations/step-two.blade.php -------------------------------------------------------------------------------- /resources/views/thankyou.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/thankyou.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/vendor/mail/html/button.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/vendor/mail/html/footer.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/vendor/mail/html/header.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/vendor/mail/html/layout.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/vendor/mail/html/message.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/panel.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/vendor/mail/html/panel.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/subcopy.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/vendor/mail/html/subcopy.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/table.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/vendor/mail/html/table.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/themes/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/vendor/mail/html/themes/default.css -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/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/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/vendor/mail/text/header.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/vendor/mail/text/layout.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/mail/text/message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/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/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/vendor/notifications/email.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/bootstrap-4.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/vendor/pagination/bootstrap-4.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/bootstrap-5.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/vendor/pagination/bootstrap-5.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/default.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/vendor/pagination/default.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/semantic-ui.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/vendor/pagination/semantic-ui.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/simple-bootstrap-4.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/vendor/pagination/simple-bootstrap-4.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/simple-bootstrap-5.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/vendor/pagination/simple-bootstrap-5.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/simple-default.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/vendor/pagination/simple-default.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/simple-tailwind.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/vendor/pagination/simple-tailwind.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/pagination/tailwind.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/vendor/pagination/tailwind.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/routes/auth.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/routes/web.php -------------------------------------------------------------------------------- /sail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/sail -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/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 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/Auth/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/tests/Feature/Auth/AuthenticationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/tests/Feature/Auth/EmailVerificationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/tests/Feature/Auth/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/tests/Feature/Auth/PasswordResetTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/tests/Feature/Auth/RegistrationTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/laravel-restaurant-reservation/HEAD/webpack.mix.js --------------------------------------------------------------------------------