├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── Actions │ └── Fortify │ │ ├── CreateNewUser.php │ │ ├── PasswordValidationRules.php │ │ ├── ResetUserPassword.php │ │ ├── UpdateUserPassword.php │ │ └── UpdateUserProfileInformation.php ├── Http │ ├── Controllers │ │ └── Controller.php │ └── Middleware │ │ └── HandleInertiaRequests.php ├── Models │ └── User.php └── Providers │ ├── AppServiceProvider.php │ └── FortifyServiceProvider.php ├── artisan ├── bootstrap ├── app.php ├── cache │ └── .gitignore └── providers.php ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── cache.php ├── database.php ├── filesystems.php ├── fortify.php ├── inertia.php ├── logging.php ├── mail.php ├── queue.php ├── services.php └── session.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 0001_01_01_000000_create_users_table.php │ ├── 0001_01_01_000001_create_cache_table.php │ ├── 0001_01_01_000002_create_jobs_table.php │ └── 0001_01_01_000003_add_two_factor_columns_to_users_table.php └── seeders │ └── DatabaseSeeder.php ├── eslint.config.js ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── apple-touch-icon.png ├── favicon.ico ├── favicon.svg ├── index.php └── robots.txt ├── resources ├── css │ └── app.css ├── js │ ├── app.ts │ ├── components │ │ └── ConfirmsPassword.vue │ ├── layouts │ │ ├── AppLayout.vue │ │ └── AuthLayout.vue │ ├── pages │ │ ├── Dashboard.vue │ │ ├── ErrorPage.vue │ │ ├── Welcome.vue │ │ ├── auth │ │ │ ├── ConfirmPassword.vue │ │ │ ├── ForgotPassword.vue │ │ │ ├── Login.vue │ │ │ ├── Register.vue │ │ │ ├── ResetPassword.vue │ │ │ ├── TwoFactorChallenge.vue │ │ │ └── VerifyEmail.vue │ │ └── settings │ │ │ ├── Password.vue │ │ │ ├── Profile.vue │ │ │ └── TwoFactorAuth.vue │ ├── ssr.ts │ └── types │ │ ├── global.d.ts │ │ └── index.d.ts └── views │ └── app.blade.php ├── routes ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ ├── private │ │ └── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── Feature │ ├── Auth │ │ ├── AuthenticationTest.php │ │ ├── EmailVerificationTest.php │ │ ├── PasswordConfirmationTest.php │ │ ├── PasswordResetTest.php │ │ └── RegistrationTest.php │ ├── ExampleTest.php │ └── Settings │ │ ├── TwoFactorAuthenticationSettingsTest.php │ │ ├── UpdatePasswordSettingsTest.php │ │ └── UpdateProfileSettingsTest.php ├── Pest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── tsconfig.json └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/README.md -------------------------------------------------------------------------------- /app/Actions/Fortify/CreateNewUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/app/Actions/Fortify/CreateNewUser.php -------------------------------------------------------------------------------- /app/Actions/Fortify/PasswordValidationRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/app/Actions/Fortify/PasswordValidationRules.php -------------------------------------------------------------------------------- /app/Actions/Fortify/ResetUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/app/Actions/Fortify/ResetUserPassword.php -------------------------------------------------------------------------------- /app/Actions/Fortify/UpdateUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/app/Actions/Fortify/UpdateUserPassword.php -------------------------------------------------------------------------------- /app/Actions/Fortify/UpdateUserProfileInformation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/app/Actions/Fortify/UpdateUserProfileInformation.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Middleware/HandleInertiaRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/app/Http/Middleware/HandleInertiaRequests.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/FortifyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/app/Providers/FortifyServiceProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bootstrap/providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/bootstrap/providers.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/fortify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/config/fortify.php -------------------------------------------------------------------------------- /config/inertia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/config/inertia.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/config/session.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/database/migrations/0001_01_01_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000001_create_cache_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/database/migrations/0001_01_01_000001_create_cache_table.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000002_create_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/database/migrations/0001_01_01_000002_create_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000003_add_two_factor_columns_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/database/migrations/0001_01_01_000003_add_two_factor_columns_to_users_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/resources/js/app.ts -------------------------------------------------------------------------------- /resources/js/components/ConfirmsPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/resources/js/components/ConfirmsPassword.vue -------------------------------------------------------------------------------- /resources/js/layouts/AppLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/resources/js/layouts/AppLayout.vue -------------------------------------------------------------------------------- /resources/js/layouts/AuthLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/resources/js/layouts/AuthLayout.vue -------------------------------------------------------------------------------- /resources/js/pages/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/resources/js/pages/Dashboard.vue -------------------------------------------------------------------------------- /resources/js/pages/ErrorPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/resources/js/pages/ErrorPage.vue -------------------------------------------------------------------------------- /resources/js/pages/Welcome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/resources/js/pages/Welcome.vue -------------------------------------------------------------------------------- /resources/js/pages/auth/ConfirmPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/resources/js/pages/auth/ConfirmPassword.vue -------------------------------------------------------------------------------- /resources/js/pages/auth/ForgotPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/resources/js/pages/auth/ForgotPassword.vue -------------------------------------------------------------------------------- /resources/js/pages/auth/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/resources/js/pages/auth/Login.vue -------------------------------------------------------------------------------- /resources/js/pages/auth/Register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/resources/js/pages/auth/Register.vue -------------------------------------------------------------------------------- /resources/js/pages/auth/ResetPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/resources/js/pages/auth/ResetPassword.vue -------------------------------------------------------------------------------- /resources/js/pages/auth/TwoFactorChallenge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/resources/js/pages/auth/TwoFactorChallenge.vue -------------------------------------------------------------------------------- /resources/js/pages/auth/VerifyEmail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/resources/js/pages/auth/VerifyEmail.vue -------------------------------------------------------------------------------- /resources/js/pages/settings/Password.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/resources/js/pages/settings/Password.vue -------------------------------------------------------------------------------- /resources/js/pages/settings/Profile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/resources/js/pages/settings/Profile.vue -------------------------------------------------------------------------------- /resources/js/pages/settings/TwoFactorAuth.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/resources/js/pages/settings/TwoFactorAuth.vue -------------------------------------------------------------------------------- /resources/js/ssr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/resources/js/ssr.ts -------------------------------------------------------------------------------- /resources/js/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/resources/js/types/global.d.ts -------------------------------------------------------------------------------- /resources/js/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/resources/js/types/index.d.ts -------------------------------------------------------------------------------- /resources/views/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/resources/views/app.blade.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/storage/app/.gitignore -------------------------------------------------------------------------------- /storage/app/private/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/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 | -------------------------------------------------------------------------------- /tests/Feature/Auth/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/tests/Feature/Auth/AuthenticationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/tests/Feature/Auth/EmailVerificationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/tests/Feature/Auth/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/tests/Feature/Auth/PasswordResetTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/tests/Feature/Auth/RegistrationTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/Feature/Settings/TwoFactorAuthenticationSettingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/tests/Feature/Settings/TwoFactorAuthenticationSettingsTest.php -------------------------------------------------------------------------------- /tests/Feature/Settings/UpdatePasswordSettingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/tests/Feature/Settings/UpdatePasswordSettingsTest.php -------------------------------------------------------------------------------- /tests/Feature/Settings/UpdateProfileSettingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/tests/Feature/Settings/UpdateProfileSettingsTest.php -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacksmash/clean-af/HEAD/vite.config.js --------------------------------------------------------------------------------