├── .editorconfig ├── .env.ci ├── .env.example ├── .eslintrc.js ├── .gitattributes ├── .github └── workflows │ ├── laravel.yml │ └── nodejs.yml ├── .gitignore ├── .htaccess ├── .prettierrc ├── .styleci.yml ├── .vscode └── settings.json ├── README.md ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── AuthController.php │ │ ├── Controller.php │ │ ├── RecipeController.php │ │ └── StorageController.php │ ├── Kernel.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Recipe.php └── User.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── database.sqlite ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ └── 2019_08_25_155533_create_recipes_table.php └── seeds │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ └── app.css ├── favicon.ico ├── images │ ├── add-recipe.svg │ ├── calculator.svg │ ├── heart.svg │ ├── heartFill.svg │ ├── home.PNG │ ├── remove-outline.svg │ ├── search-outline.svg │ ├── storage.PNG │ └── weight.svg ├── index.php ├── js │ ├── app.js │ └── app.js.LICENSE.txt ├── mix-manifest.json └── robots.txt ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ ├── bootstrap.js │ ├── components │ │ ├── App.vue │ │ ├── FilterForm │ │ │ ├── FilterForm.vue │ │ │ ├── FilterFormMobile.vue │ │ │ └── FilterFormMobileModal.vue │ │ ├── LoginForm │ │ │ └── LoginForm.vue │ │ ├── NavBar │ │ │ └── NavBar.vue │ │ ├── Recipe │ │ │ ├── CreateCustomRecipe.vue │ │ │ ├── CreateRecipeModal.vue │ │ │ ├── RecipeCard.vue │ │ │ └── RecipeList.vue │ │ └── RegisterForm │ │ │ └── RegisterForm.vue │ ├── helpers │ │ ├── auth.js │ │ └── general.js │ ├── pages │ │ ├── HomePage.vue │ │ ├── LoginPage.vue │ │ ├── RegisterPage.vue │ │ └── StoragePage.vue │ ├── routes │ │ └── routes.js │ └── store.js └── views │ └── main.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── stories ├── 0-Welcome.stories.js ├── 1-Button.stories.js ├── MyButton.js └── Welcome.js ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ └── StorageTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/.env.ci -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/laravel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/.github/workflows/laravel.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/.htaccess -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/.prettierrc -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/.styleci.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/app/Http/Controllers/AuthController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/RecipeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/app/Http/Controllers/RecipeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/StorageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/app/Http/Controllers/StorageController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Recipe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/app/Recipe.php -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/app/User.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/database/.gitignore -------------------------------------------------------------------------------- /database/database.sqlite: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/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/KristianWEB/recipe-manager/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_25_155533_create_recipes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/database/migrations/2019_08_25_155533_create_recipes_table.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/add-recipe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/public/images/add-recipe.svg -------------------------------------------------------------------------------- /public/images/calculator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/public/images/calculator.svg -------------------------------------------------------------------------------- /public/images/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/public/images/heart.svg -------------------------------------------------------------------------------- /public/images/heartFill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/public/images/heartFill.svg -------------------------------------------------------------------------------- /public/images/home.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/public/images/home.PNG -------------------------------------------------------------------------------- /public/images/remove-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/public/images/remove-outline.svg -------------------------------------------------------------------------------- /public/images/search-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/public/images/search-outline.svg -------------------------------------------------------------------------------- /public/images/storage.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/public/images/storage.PNG -------------------------------------------------------------------------------- /public/images/weight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/public/images/weight.svg -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/js/app.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/public/js/app.js.LICENSE.txt -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/components/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/resources/js/components/App.vue -------------------------------------------------------------------------------- /resources/js/components/FilterForm/FilterForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/resources/js/components/FilterForm/FilterForm.vue -------------------------------------------------------------------------------- /resources/js/components/FilterForm/FilterFormMobile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/resources/js/components/FilterForm/FilterFormMobile.vue -------------------------------------------------------------------------------- /resources/js/components/FilterForm/FilterFormMobileModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/resources/js/components/FilterForm/FilterFormMobileModal.vue -------------------------------------------------------------------------------- /resources/js/components/LoginForm/LoginForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/resources/js/components/LoginForm/LoginForm.vue -------------------------------------------------------------------------------- /resources/js/components/NavBar/NavBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/resources/js/components/NavBar/NavBar.vue -------------------------------------------------------------------------------- /resources/js/components/Recipe/CreateCustomRecipe.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/resources/js/components/Recipe/CreateCustomRecipe.vue -------------------------------------------------------------------------------- /resources/js/components/Recipe/CreateRecipeModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/resources/js/components/Recipe/CreateRecipeModal.vue -------------------------------------------------------------------------------- /resources/js/components/Recipe/RecipeCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/resources/js/components/Recipe/RecipeCard.vue -------------------------------------------------------------------------------- /resources/js/components/Recipe/RecipeList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/resources/js/components/Recipe/RecipeList.vue -------------------------------------------------------------------------------- /resources/js/components/RegisterForm/RegisterForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/resources/js/components/RegisterForm/RegisterForm.vue -------------------------------------------------------------------------------- /resources/js/helpers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/resources/js/helpers/auth.js -------------------------------------------------------------------------------- /resources/js/helpers/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/resources/js/helpers/general.js -------------------------------------------------------------------------------- /resources/js/pages/HomePage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/resources/js/pages/HomePage.vue -------------------------------------------------------------------------------- /resources/js/pages/LoginPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/resources/js/pages/LoginPage.vue -------------------------------------------------------------------------------- /resources/js/pages/RegisterPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/resources/js/pages/RegisterPage.vue -------------------------------------------------------------------------------- /resources/js/pages/StoragePage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/resources/js/pages/StoragePage.vue -------------------------------------------------------------------------------- /resources/js/routes/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/resources/js/routes/routes.js -------------------------------------------------------------------------------- /resources/js/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/resources/js/store.js -------------------------------------------------------------------------------- /resources/views/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/resources/views/main.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/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 | -------------------------------------------------------------------------------- /stories/0-Welcome.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/stories/0-Welcome.stories.js -------------------------------------------------------------------------------- /stories/1-Button.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/stories/1-Button.stories.js -------------------------------------------------------------------------------- /stories/MyButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/stories/MyButton.js -------------------------------------------------------------------------------- /stories/Welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/stories/Welcome.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/StorageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/tests/Feature/StorageTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KristianWEB/recipe-manager/HEAD/webpack.mix.js --------------------------------------------------------------------------------