├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── AuthenticatedSessionController.php │ │ │ ├── ConfirmablePasswordController.php │ │ │ ├── EmailVerificationNotificationController.php │ │ │ ├── EmailVerificationPromptController.php │ │ │ ├── NewPasswordController.php │ │ │ ├── PasswordController.php │ │ │ ├── PasswordResetLinkController.php │ │ │ ├── RegisteredUserController.php │ │ │ └── VerifyEmailController.php │ │ ├── Controller.php │ │ ├── CreditController.php │ │ ├── Feature1Controller.php │ │ ├── Feature2Controller.php │ │ └── ProfileController.php │ ├── Middleware │ │ └── HandleInertiaRequests.php │ ├── Requests │ │ ├── Auth │ │ │ └── LoginRequest.php │ │ └── ProfileUpdateRequest.php │ └── Resources │ │ ├── FeatureResource.php │ │ └── PackageResource.php ├── Models │ ├── Feature.php │ ├── Package.php │ ├── Transaction.php │ ├── UsedFeature.php │ └── User.php ├── Observers │ └── UserObserver.php └── Providers │ └── AppServiceProvider.php ├── artisan ├── bootstrap ├── app.php ├── cache │ └── .gitignore └── providers.php ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── cache.php ├── database.php ├── filesystems.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 │ ├── 2024_04_17_194420_create_packages_table.php │ ├── 2024_04_17_194423_create_transactions_table.php │ ├── 2024_04_17_194426_create_features_table.php │ └── 2024_04_17_194429_create_used_features_table.php └── seeders │ └── DatabaseSeeder.php ├── jsconfig.json ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public ├── .htaccess ├── build.zip ├── favicon.ico ├── img │ └── coin.png ├── index.php ├── robots.txt └── uploads │ └── users │ └── jango1212.png ├── resources ├── css │ └── app.css ├── js │ ├── Components │ │ ├── ApplicationLogo.jsx │ │ ├── Checkbox.jsx │ │ ├── CreditPricingCards.jsx │ │ ├── DangerButton.jsx │ │ ├── Dropdown.jsx │ │ ├── Feature.jsx │ │ ├── InputError.jsx │ │ ├── InputLabel.jsx │ │ ├── Modal.jsx │ │ ├── NavLink.jsx │ │ ├── PrimaryButton.jsx │ │ ├── ResponsiveNavLink.jsx │ │ ├── SecondaryButton.jsx │ │ └── TextInput.jsx │ ├── Layouts │ │ ├── AuthenticatedLayout.jsx │ │ └── GuestLayout.jsx │ ├── Pages │ │ ├── Auth │ │ │ ├── ConfirmPassword.jsx │ │ │ ├── ForgotPassword.jsx │ │ │ ├── Login.jsx │ │ │ ├── Register.jsx │ │ │ ├── ResetPassword.jsx │ │ │ └── VerifyEmail.jsx │ │ ├── Credit │ │ │ └── Index.jsx │ │ ├── Dashboard.jsx │ │ ├── Feature1 │ │ │ └── Index.jsx │ │ ├── Feature2 │ │ │ └── Index.jsx │ │ ├── Profile │ │ │ ├── Edit.jsx │ │ │ └── Partials │ │ │ │ ├── DeleteUserForm.jsx │ │ │ │ ├── UpdatePasswordForm.jsx │ │ │ │ └── UpdateProfileInformationForm.jsx │ │ └── Welcome.jsx │ ├── app.jsx │ └── bootstrap.js └── views │ ├── app.blade.php │ └── welcome.blade.php ├── routes ├── auth.php ├── console.php └── web.php ├── screenshots ├── 1.png ├── 2.png ├── 3.png ├── 4.png └── 5.png ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── Feature │ ├── Auth │ │ ├── AuthenticationTest.php │ │ ├── EmailVerificationTest.php │ │ ├── PasswordConfirmationTest.php │ │ ├── PasswordResetTest.php │ │ ├── PasswordUpdateTest.php │ │ └── RegistrationTest.php │ ├── ExampleTest.php │ └── ProfileTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── vite.config.js └── vite.config.js.timestamp-1713565300702-af39278d4dcd2.mjs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/AuthenticatedSessionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/app/Http/Controllers/Auth/AuthenticatedSessionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ConfirmablePasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/app/Http/Controllers/Auth/ConfirmablePasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationNotificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/app/Http/Controllers/Auth/EmailVerificationNotificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationPromptController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/app/Http/Controllers/Auth/EmailVerificationPromptController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/NewPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/app/Http/Controllers/Auth/NewPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/PasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/app/Http/Controllers/Auth/PasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/PasswordResetLinkController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/app/Http/Controllers/Auth/PasswordResetLinkController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisteredUserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/app/Http/Controllers/Auth/RegisteredUserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerifyEmailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/app/Http/Controllers/Auth/VerifyEmailController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/CreditController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/app/Http/Controllers/CreditController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Feature1Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/app/Http/Controllers/Feature1Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/Feature2Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/app/Http/Controllers/Feature2Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/app/Http/Controllers/ProfileController.php -------------------------------------------------------------------------------- /app/Http/Middleware/HandleInertiaRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/app/Http/Middleware/HandleInertiaRequests.php -------------------------------------------------------------------------------- /app/Http/Requests/Auth/LoginRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/app/Http/Requests/Auth/LoginRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ProfileUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/app/Http/Requests/ProfileUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Resources/FeatureResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/app/Http/Resources/FeatureResource.php -------------------------------------------------------------------------------- /app/Http/Resources/PackageResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/app/Http/Resources/PackageResource.php -------------------------------------------------------------------------------- /app/Models/Feature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/app/Models/Feature.php -------------------------------------------------------------------------------- /app/Models/Package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/app/Models/Package.php -------------------------------------------------------------------------------- /app/Models/Transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/app/Models/Transaction.php -------------------------------------------------------------------------------- /app/Models/UsedFeature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/app/Models/UsedFeature.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Observers/UserObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/app/Observers/UserObserver.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bootstrap/providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/bootstrap/providers.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/config/session.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/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/arslanstack/saas-boilerplate/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/arslanstack/saas-boilerplate/HEAD/database/migrations/0001_01_01_000002_create_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2024_04_17_194420_create_packages_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/database/migrations/2024_04_17_194420_create_packages_table.php -------------------------------------------------------------------------------- /database/migrations/2024_04_17_194423_create_transactions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/database/migrations/2024_04_17_194423_create_transactions_table.php -------------------------------------------------------------------------------- /database/migrations/2024_04_17_194426_create_features_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/database/migrations/2024_04_17_194426_create_features_table.php -------------------------------------------------------------------------------- /database/migrations/2024_04_17_194429_create_used_features_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/database/migrations/2024_04_17_194429_create_used_features_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/phpunit.xml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/build.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/public/build.zip -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/img/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/public/img/coin.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/uploads/users/jango1212.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/public/uploads/users/jango1212.png -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/Components/ApplicationLogo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Components/ApplicationLogo.jsx -------------------------------------------------------------------------------- /resources/js/Components/Checkbox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Components/Checkbox.jsx -------------------------------------------------------------------------------- /resources/js/Components/CreditPricingCards.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Components/CreditPricingCards.jsx -------------------------------------------------------------------------------- /resources/js/Components/DangerButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Components/DangerButton.jsx -------------------------------------------------------------------------------- /resources/js/Components/Dropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Components/Dropdown.jsx -------------------------------------------------------------------------------- /resources/js/Components/Feature.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Components/Feature.jsx -------------------------------------------------------------------------------- /resources/js/Components/InputError.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Components/InputError.jsx -------------------------------------------------------------------------------- /resources/js/Components/InputLabel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Components/InputLabel.jsx -------------------------------------------------------------------------------- /resources/js/Components/Modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Components/Modal.jsx -------------------------------------------------------------------------------- /resources/js/Components/NavLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Components/NavLink.jsx -------------------------------------------------------------------------------- /resources/js/Components/PrimaryButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Components/PrimaryButton.jsx -------------------------------------------------------------------------------- /resources/js/Components/ResponsiveNavLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Components/ResponsiveNavLink.jsx -------------------------------------------------------------------------------- /resources/js/Components/SecondaryButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Components/SecondaryButton.jsx -------------------------------------------------------------------------------- /resources/js/Components/TextInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Components/TextInput.jsx -------------------------------------------------------------------------------- /resources/js/Layouts/AuthenticatedLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Layouts/AuthenticatedLayout.jsx -------------------------------------------------------------------------------- /resources/js/Layouts/GuestLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Layouts/GuestLayout.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Auth/ConfirmPassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Pages/Auth/ConfirmPassword.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Auth/ForgotPassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Pages/Auth/ForgotPassword.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Auth/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Pages/Auth/Login.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Auth/Register.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Pages/Auth/Register.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Auth/ResetPassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Pages/Auth/ResetPassword.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Auth/VerifyEmail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Pages/Auth/VerifyEmail.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Credit/Index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Pages/Credit/Index.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Dashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Pages/Dashboard.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Feature1/Index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Pages/Feature1/Index.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Feature2/Index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Pages/Feature2/Index.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Profile/Edit.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Pages/Profile/Edit.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Profile/Partials/DeleteUserForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Pages/Profile/Partials/DeleteUserForm.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Profile/Partials/UpdatePasswordForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Pages/Profile/Partials/UpdatePasswordForm.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.jsx -------------------------------------------------------------------------------- /resources/js/Pages/Welcome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/Pages/Welcome.jsx -------------------------------------------------------------------------------- /resources/js/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/app.jsx -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/views/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/views/app.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/routes/auth.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/routes/web.php -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/screenshots/3.png -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/screenshots/4.png -------------------------------------------------------------------------------- /screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/screenshots/5.png -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/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/arslanstack/saas-boilerplate/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/Feature/Auth/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/tests/Feature/Auth/AuthenticationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/tests/Feature/Auth/EmailVerificationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/tests/Feature/Auth/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/tests/Feature/Auth/PasswordResetTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordUpdateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/tests/Feature/Auth/PasswordUpdateTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/tests/Feature/Auth/RegistrationTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/Feature/ProfileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/tests/Feature/ProfileTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arslanstack/saas-boilerplate/HEAD/vite.config.js -------------------------------------------------------------------------------- /vite.config.js.timestamp-1713565300702-af39278d4dcd2.mjs: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------