Skip to content

A Laravel + Socialite + Vite + Vue 3 + TailwindCSS SPA Boilerplate with user authentication, registration, email verification, social media authentication, password recovery, user management, and roles/permissions management. Uses TailwindCSS. While the front end is part of this repository it is a completely separated Vue 3 front end.

License

jeremykenedy/laravel-spa

Repository files navigation

Laravel Auth SPA

StyleCI CodeQL Quality Gate GitGuardian scan Composer Install Lines of Code MadeWithVueJs.com shield App Version License: MIT

Sponsor me on GitHub Sponsor me on Patreon Buy me a Coffee Vultr GitHub Stars Follow on GitHub Follow on Twitter

This project costs me $22/month to be hosted on Vultr.
Please consider supporting my work if you use & find it useful. ❀️

Table of contents

About

A Laravel + Socialite + Vite + Vue 3 + TailwindCSS SPA Boilerplate. Laravel with user authentication, registration with email verification, social media authentication, password recovery, user management, and roles/permissions management. Uses official TailwindCSS. While the front end is part of this repository it is a completely separated Vue 3 front end compiled using ViteJS.

App Features

Built on:
Features:

Installation Instructions

  1. Run git clone https://github.com/jeremykenedy/laravel-spa.git laravel-spa
  2. Create a MySQL database for the project
    • mysql -u root -p, if using Vagrant: mysql -u homestead -psecret
    • create database laravelSpa;
    • \q
  3. From the projects root run cp .env.example .env
  4. Configure your .env file (VERY IMPORTANT)
  5. Run composer install from the projects root folder
  6. From the projects root folder run sudo chmod -R 755 ../laravel-spa
  7. From the projects root folder run php artisan key:generate
  8. From the projects root folder run php artisan migrate
  9. From the projects root folder run composer dump-autoload
  10. From the projects root folder run php artisan db:seed
  11. Compile the front end assets with npm steps or yarn steps.

Build the Front End Assets with ViteJs

Using NPM:
  1. From the projects root folder run npm install
  2. From the projects root folder run npm run dev or npm run build
  • You can lint assets with npm run lint
  • You can clean the syntax with npm run clean
Using Yarn:
  1. From the projects root folder run yarn install
  2. From the projects root folder run yarn run dev or yarn run build
  • You can lint assets with yarn run lint
  • You can clean the syntax with yarn run clean

Optionally Build Cache

  1. From the projects root folder run php artisan config:cache
And thats it with the caveat of setting up and configuring your development environment.

Seeds

Seeded Users
Email Password
superadmin@superadmin.com password
admin@admin.com password
user@user.com password

Socialite

Get Socialite Login API Keys:

Add More Socialite Logins

Screenshots

Login Social Media Login Social Media TikTok Register Social Media Instagram Register Social Media Social User Dashboard Admin Dashboard Dark Mode Admin Users Table Admin Roles Table Admin Permissions Table Admin App Settings Dark Mode Home About Login Register Dashboard Settings - Profile Settings - Password Profile Dark Account SM Settings Revoke Account SM Provider Delete Account Confirm Delete Account Account Deleted Terms Template Forgot Password Reset Password Mobile Menu Mobile Login

File Tree

LaravelSpa
β”œβ”€β”€ .browserslistrc
β”œβ”€β”€ .editorconfig
β”œβ”€β”€ .env.example
β”œβ”€β”€ .env.travis
β”œβ”€β”€ .eslintrc.js
β”œβ”€β”€ .gitattributes
β”œβ”€β”€ .github
β”‚Β Β  β”œβ”€β”€ FUNDING.yml
β”‚Β Β  β”œβ”€β”€ dependabot.yml
β”‚Β Β  β”œβ”€β”€ labeler.yml
β”‚Β Β  └── workflows
β”‚Β Β      β”œβ”€β”€ changelog.yml
β”‚Β Β      β”œβ”€β”€ codeql.yml
β”‚Β Β      β”œβ”€β”€ create-release.yml
β”‚Β Β      β”œβ”€β”€ dependency-review.yml
β”‚Β Β      β”œβ”€β”€ deploy.yml
β”‚Β Β      β”œβ”€β”€ gitguardian.yml
β”‚Β Β      β”œβ”€β”€ greetings.yml
β”‚Β Β      β”œβ”€β”€ labeler.yml
β”‚Β Β      β”œβ”€β”€ laravel.yml
β”‚Β Β      β”œβ”€β”€ manual.yml
β”‚Β Β      β”œβ”€β”€ node.js.yml
β”‚Β Β      β”œβ”€β”€ php.yml
β”‚Β Β      β”œβ”€β”€ release.yml
β”‚Β Β      β”œβ”€β”€ sentry.yml
β”‚Β Β      └── stale.yml
β”œβ”€β”€ .gitignore
β”œβ”€β”€ .npmrc
β”œβ”€β”€ .prettierignore
β”œβ”€β”€ .scripts
β”‚Β Β  └── deploy.sh
β”œβ”€β”€ .styleci.yml
β”œβ”€β”€ .travis.yml
β”œβ”€β”€ LICENSE
β”œβ”€β”€ README.md
β”œβ”€β”€ SECURITY.md
β”œβ”€β”€ app
β”‚Β Β  β”œβ”€β”€ Console
β”‚Β Β  β”‚Β Β  └── Kernel.php
β”‚Β Β  β”œβ”€β”€ Exceptions
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Handler.php
β”‚Β Β  β”‚Β Β  └── SocialProviderDeniedException.php
β”‚Β Β  β”œβ”€β”€ Http
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Controllers
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AppSettingsController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AppleSocialController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Auth
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AuthController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ ForgotPasswordController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ PasswordController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ RegisterController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ ResetPasswordController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ SocialiteController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  └── VerificationController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Controller.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ DashboardController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ ImpersonateController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ PermissionsController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ ProfileController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ RolesController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ ServerInfoController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ UserController.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── UsersController.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Kernel.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Middleware
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AddContentSecurityPolicyHeaders.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Authenticate.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ EncryptCookies.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ PreventRequestsDuringMaintenance.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ RedirectIfAuthenticated.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ TrimStrings.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ TrustHosts.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ TrustProxies.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── VerifyCsrfToken.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Requests
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AppSettings
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Permissions
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ CreatePermissionRequest.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ GetPermissionsRequest.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  └── UpdatePermissionRequest.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Roles
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ CreateRoleRequest.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  └── UpdateRoleRequest.php
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── Users
β”‚Β Β  β”‚Β Β  β”‚Β Β      β”œβ”€β”€ CreateUserRequest.php
β”‚Β Β  β”‚Β Β  β”‚Β Β      β”œβ”€β”€ GetUserRolesRequest.php
β”‚Β Β  β”‚Β Β  β”‚Β Β      β”œβ”€β”€ ImpersonateUserRequest.php
β”‚Β Β  β”‚Β Β  β”‚Β Β      └── UpdateUserRequest.php
β”‚Β Β  β”‚Β Β  └── Resources
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ Permissions
β”‚Β Β  β”‚Β Β      β”‚Β Β  β”œβ”€β”€ PermissionResource.php
β”‚Β Β  β”‚Β Β      β”‚Β Β  └── PermissionsCollection.php
β”‚Β Β  β”‚Β Β      └── Users
β”‚Β Β  β”‚Β Β          β”œβ”€β”€ RoleResource.php
β”‚Β Β  β”‚Β Β          └── RolesCollection.php
β”‚Β Β  β”œβ”€β”€ Jobs
β”‚Β Β  β”‚Β Β  └── PersonalDataExportJob.php
β”‚Β Β  β”œβ”€β”€ Mail
β”‚Β Β  β”‚Β Β  └── ExceptionOccured.php
β”‚Β Β  β”œβ”€β”€ Models
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Impersonation.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Permission.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Role.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Setting.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ SocialiteProvider.php
β”‚Β Β  β”‚Β Β  └── User.php
β”‚Β Β  β”œβ”€β”€ Notifications
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ PersonalDataExportedNotification.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ ResetPasswordNotification.php
β”‚Β Β  β”‚Β Β  └── VerifyEmailNotification.php
β”‚Β Β  β”œβ”€β”€ Providers
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AppServiceProvider.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AuthServiceProvider.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ BroadcastServiceProvider.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ EventServiceProvider.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ RouteServiceProvider.php
β”‚Β Β  β”‚Β Β  └── ViewComposerServiceProvider.php
β”‚Β Β  β”œβ”€β”€ Services
β”‚Β Β  β”‚Β Β  └── AppleToken.php
β”‚Β Β  β”œβ”€β”€ Traits
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AppSettingsTrait.php
β”‚Β Β  β”‚Β Β  └── SocialiteProvidersTrait.php
β”‚Β Β  └── View
β”‚Β Β      └── Composers
β”‚Β Β          β”œβ”€β”€ GaComposer.php
β”‚Β Β          └── GaEnabledComposer.php
β”œβ”€β”€ artisan
β”œβ”€β”€ bootstrap
β”‚Β Β  β”œβ”€β”€ android-chrome-192x192.png
β”‚Β Β  β”œβ”€β”€ android-chrome-512x512.png
β”‚Β Β  β”œβ”€β”€ app.php
β”‚Β Β  β”œβ”€β”€ apple-touch-icon.png
β”‚Β Β  β”œβ”€β”€ cache
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ .gitignore
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ packages.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ routes-v7.php
β”‚Β Β  β”‚Β Β  └── services.php
β”‚Β Β  β”œβ”€β”€ favicon-16x16.png
β”‚Β Β  β”œβ”€β”€ favicon-32x32.png
β”‚Β Β  β”œβ”€β”€ favicon.ico
β”‚Β Β  └── ssr
β”‚Β Β      β”œβ”€β”€ android-chrome-192x192.png
β”‚Β Β      β”œβ”€β”€ android-chrome-512x512.png
β”‚Β Β      β”œβ”€β”€ app2.mjs
β”‚Β Β      β”œβ”€β”€ apple-touch-icon.png
β”‚Β Β      β”œβ”€β”€ assets
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ About-8055ba51.mjs
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ Account-db07883a.mjs
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ Admin-1aef526f.mjs
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ AdminLayout-b06d3e9f.mjs
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ AppSettings-493dc486.mjs
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ Dashboard-00d0a96f.mjs
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ Errors-cfd7b346.mjs
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ ForgotPassword-ca93934f.mjs
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ Home-092f52e0.mjs
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ Login-3d895534.mjs
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ NotFound-52f67599.mjs
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ Password-0f549b05.mjs
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ Permissions-d779932d.mjs
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ PhpInfo-c54b8303.mjs
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ Profile-8dc4ce3e.mjs
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ Register-c8d7fa41.mjs
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ ResetPassword-4e7ca3b7.mjs
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ Roles-53fcb449.mjs
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ RolesBadges-5ee6b7bc.mjs
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ Settings-a3568c63.mjs
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ SocialiteLogins-6af0e372.mjs
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ Success-4b3d058c.mjs
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ Terms-3b1605fc.mjs
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ Users-fcead5b0.mjs
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ VerifyEmail-3b245fb1.mjs
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ default.css_vue_type_style_index_0_src_true_lang-6d22712f.mjs
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ workbox-window.prod.es5-77e1b1e1.mjs
β”‚Β Β      β”‚Β Β  └── zoho-monocrome-black-b48ed5c0.mjs
β”‚Β Β      β”œβ”€β”€ favicon-16x16.png
β”‚Β Β      β”œβ”€β”€ favicon-32x32.png
β”‚Β Β      β”œβ”€β”€ favicon.ico
β”‚Β Β      β”œβ”€β”€ js-bundle-stats.html
β”‚Β Β      β”œβ”€β”€ manifest.webmanifest
β”‚Β Β      └── pluginWebUpdateNotice
β”‚Β Β          β”œβ”€β”€ webUpdateNoticeInjectScript.global.js
β”‚Β Β          β”œβ”€β”€ webUpdateNoticeInjectStyle.css
β”‚Β Β          └── web_version_by_plugin.json
β”œβ”€β”€ composer.json
β”œβ”€β”€ composer.lock
β”œβ”€β”€ config
β”‚Β Β  β”œβ”€β”€ app.php
β”‚Β Β  β”œβ”€β”€ auth.php
β”‚Β Β  β”œβ”€β”€ broadcasting.php
β”‚Β Β  β”œβ”€β”€ cache.php
β”‚Β Β  β”œβ”€β”€ cors.php
β”‚Β Β  β”œβ”€β”€ database.php
β”‚Β Β  β”œβ”€β”€ debugbar.php
β”‚Β Β  β”œβ”€β”€ exceptions.php
β”‚Β Β  β”œβ”€β”€ filesystems.php
β”‚Β Β  β”œβ”€β”€ hashing.php
β”‚Β Β  β”œβ”€β”€ laravel-https.php
β”‚Β Β  β”œβ”€β”€ laravel-logger.php
β”‚Β Β  β”œβ”€β”€ laravel-page-speed.php
β”‚Β Β  β”œβ”€β”€ laravelpwa.php
β”‚Β Β  β”œβ”€β”€ logging.php
β”‚Β Β  β”œβ”€β”€ mail.php
β”‚Β Β  β”œβ”€β”€ personal-data-export.php
β”‚Β Β  β”œβ”€β”€ queue.php
β”‚Β Β  β”œβ”€β”€ roles.php
β”‚Β Β  β”œβ”€β”€ sanctum.php
β”‚Β Β  β”œβ”€β”€ sentry.php
β”‚Β Β  β”œβ”€β”€ services.php
β”‚Β Β  β”œβ”€β”€ session.php
β”‚Β Β  β”œβ”€β”€ settings.php
β”‚Β Β  β”œβ”€β”€ users.php
β”‚Β Β  └── view.php
β”œβ”€β”€ database
β”‚Β Β  β”œβ”€β”€ .gitignore
β”‚Β Β  β”œβ”€β”€ factories
β”‚Β Β  β”‚Β Β  └── UserFactory.php
β”‚Β Β  β”œβ”€β”€ migrations
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2014_10_00_000000_create_settings_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2014_10_00_000001_add_group_column_on_settings_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2014_10_12_000000_create_users_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2014_10_12_100000_create_password_resets_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2016_01_15_105324_create_roles_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2016_01_15_114412_create_role_user_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2016_01_26_115212_create_permissions_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2016_01_26_115523_create_permission_role_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2016_02_09_132439_create_permission_user_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2019_08_19_000000_create_failed_jobs_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2019_12_14_000001_create_personal_access_tokens_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2021_04_26_093603_create_jobs_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2022_09_05_192055_update_users_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2022_11_02_051027_update_settings_table.php
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 2022_11_28_073632_create_socialite_providers_table.php
β”‚Β Β  β”‚Β Β  └── 2022_12_06_061947_create_impersonations_table.php
β”‚Β Β  └── seeders
β”‚Β Β      β”œβ”€β”€ AppSettingsSeeder.php
β”‚Β Β      β”œβ”€β”€ ConnectRelationshipsSeeder.php
β”‚Β Β      β”œβ”€β”€ DatabaseSeeder.php
β”‚Β Β      β”œβ”€β”€ PermissionsTableSeeder.php
β”‚Β Β      β”œβ”€β”€ RolesTableSeeder.php
β”‚Β Β      └── UsersTableSeeder.php
β”œβ”€β”€ env.d.ts
β”œβ”€β”€ package-lock.json
β”œβ”€β”€ package.json
β”œβ”€β”€ phpunit.xml
β”œβ”€β”€ postcss.config.js
β”œβ”€β”€ prettier.config.js
β”œβ”€β”€ prettierrc.json
β”œβ”€β”€ public
β”‚Β Β  β”œβ”€β”€ .htaccess
β”‚Β Β  β”œβ”€β”€ android-chrome-192x192.png
β”‚Β Β  β”œβ”€β”€ android-chrome-512x512.png
β”‚Β Β  β”œβ”€β”€ apple-touch-icon.png
β”‚Β Β  β”œβ”€β”€ css
β”‚Β Β  β”‚Β Β  └── app.css
β”‚Β Β  β”œβ”€β”€ favicon-16x16.png
β”‚Β Β  β”œβ”€β”€ favicon-32x32.png
β”‚Β Β  β”œβ”€β”€ favicon.ico
β”‚Β Β  β”œβ”€β”€ images
β”‚Β Β  β”‚Β Β  └── icons
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ icon-128x128.png
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ icon-144x144.png
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ icon-152x152.png
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ icon-192x192.png
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ icon-384x384.png
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ icon-512x512.png
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ icon-72x72.png
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ icon-96x96.png
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ splash-1125x2436.png
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ splash-1242x2208.png
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ splash-1242x2688.png
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ splash-1536x2048.png
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ splash-1668x2224.png
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ splash-1668x2388.png
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ splash-2048x2732.png
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ splash-640x1136.png
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ splash-750x1334.png
β”‚Β Β  β”‚Β Β      └── splash-828x1792.png
β”‚Β Β  β”œβ”€β”€ index.php
β”‚Β Β  β”œβ”€β”€ js
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ app.js
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ resources_js_Views_ForgotPassword_vue.js
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ resources_js_Views_Home_vue.js
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ resources_js_Views_Login_vue.js
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ resources_js_Views_Password_vue.js
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ resources_js_Views_Profile_vue.js
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ resources_js_Views_Register_vue.js
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ resources_js_Views_ResetPassword_vue.js
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ resources_js_Views_Settings_vue.js
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ resources_js_Views_VerifyEmail_vue.js
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ resources_js_Views_Welcome_vue.js
β”‚Β Β  β”‚Β Β  └── s-code.min.js
β”‚Β Β  β”œβ”€β”€ mix-manifest.json
β”‚Β Β  β”œβ”€β”€ robots.txt
β”‚Β Β  β”œβ”€β”€ serviceworker.js
β”‚Β Β  β”œβ”€β”€ sw.ts
β”‚Β Β  └── web.config
β”œβ”€β”€ resources
β”‚Β Β  β”œβ”€β”€ css
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ app.css
β”‚Β Β  β”‚Β Β  └── normalize.css
β”‚Β Β  β”œβ”€β”€ img
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ 404.png
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ favicon
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ android-chrome-192x192.png
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ android-chrome-512x512.png
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ apple-touch-icon.png
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ favicon-16x16.png
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ favicon-32x32.png
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── favicon.ico
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ plugs.png
β”‚Β Β  β”‚Β Β  └── vendor-logos
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ vultr-1.webp
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ vultr-2.png
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ zoho-monocrome-black.png
β”‚Β Β  β”‚Β Β      └── zoho-monocrome-white.png
β”‚Β Β  β”œβ”€β”€ js
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ app.js
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ bootstrap.js
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ components
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AppFooter.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AppNav.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ BmcButtons.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ CircleSvg.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Errors.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ GHButton.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ GHButtons.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ OctoCat.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Pagination.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ PatreonButton.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ PerPage.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ ReloadPrompt.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ Success.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ VerifyNotice.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ VultrReferral.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ account
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AccountAdministration.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AccountAuthentication.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AccountData.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  └── AccountPrivacy.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ admin
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AdminNavBar.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AdminSidebar.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ RolesTable.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ RolesTableRow.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ UsersTable.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  └── UsersTableRow.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ auth
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  └── SocialiteLogins.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ common
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AppButton.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AppDeleteModal.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AppModal.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AppSwitch.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AppTable.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  └── AppToast.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ form
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AppSettingTextInput.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ AppSettingTextarea.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  └── AppSettingToggle.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ loaders
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  └── AnimatedTableLoader.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ roles
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ PermissionFormModal.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ RoleFormModal.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  └── RolesBadges.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── users
β”‚Β Β  β”‚Β Β  β”‚Β Β      β”œβ”€β”€ UserDownloadData.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β      β”œβ”€β”€ UserForm.vue
β”‚Β Β  β”‚Β Β  β”‚Β Β      └── UserFormModal.vue
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ layouts
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── AdminLayout.vue
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ middleware
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ auth.js
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ guest.js
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ middlewarePipeline.js
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ roleAdmin.js
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ roleSuperAdmin.js
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── roleUser.js
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ router
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ index.js
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── routes.js
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ services
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ analytics.js
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ asteroids.js
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ common.js
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ excanvas.js
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ s-code.js
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ s-code.min.js
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── users.js
β”‚Β Β  β”‚Β Β  β”œβ”€β”€ store
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ index.js
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ modules
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ auth.js
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  β”œβ”€β”€ sidebar.js
β”‚Β Β  β”‚Β Β  β”‚Β Β  β”‚Β Β  └── toast.js
β”‚Β Β  β”‚Β Β  β”‚Β Β  └── mutation-types.js
β”‚Β Β  β”‚Β Β  └── views
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ App.vue
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ Blank.vue
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ admin
β”‚Β Β  β”‚Β Β      β”‚Β Β  β”œβ”€β”€ Admin.vue
β”‚Β Β  β”‚Β Β      β”‚Β Β  β”œβ”€β”€ AppSettings.vue
β”‚Β Β  β”‚Β Β      β”‚Β Β  β”œβ”€β”€ Permissions.vue
β”‚Β Β  β”‚Β Β      β”‚Β Β  β”œβ”€β”€ PhpInfo.vue
β”‚Β Β  β”‚Β Β      β”‚Β Β  β”œβ”€β”€ Roles.vue
β”‚Β Β  β”‚Β Β      β”‚Β Β  └── Users.vue
β”‚Β Β  β”‚Β Β      └── pages
β”‚Β Β  β”‚Β Β          β”œβ”€β”€ About.vue
β”‚Β Β  β”‚Β Β          β”œβ”€β”€ Dashboard.vue
β”‚Β Β  β”‚Β Β          β”œβ”€β”€ ForgotPassword.vue
β”‚Β Β  β”‚Β Β          β”œβ”€β”€ Home.vue
β”‚Β Β  β”‚Β Β          β”œβ”€β”€ Login.vue
β”‚Β Β  β”‚Β Β          β”œβ”€β”€ NotFound.vue
β”‚Β Β  β”‚Β Β          β”œβ”€β”€ Register.vue
β”‚Β Β  β”‚Β Β          β”œβ”€β”€ ResetPassword.vue
β”‚Β Β  β”‚Β Β          β”œβ”€β”€ Terms.vue
β”‚Β Β  β”‚Β Β          β”œβ”€β”€ VerifyEmail.vue
β”‚Β Β  β”‚Β Β          β”œβ”€β”€ auth
β”‚Β Β  β”‚Β Β          └── settings
β”‚Β Β  β”‚Β Β              β”œβ”€β”€ Account.vue
β”‚Β Β  β”‚Β Β              β”œβ”€β”€ Password.vue
β”‚Β Β  β”‚Β Β              β”œβ”€β”€ Profile.vue
β”‚Β Β  β”‚Β Β              └── Settings.vue
β”‚Β Β  β”œβ”€β”€ lang
β”‚Β Β  β”‚Β Β  └── en
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ auth.php
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ pagination.php
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ passwords.php
β”‚Β Β  β”‚Β Β      β”œβ”€β”€ personal-data-exports.php
β”‚Β Β  β”‚Β Β      └── validation.php
β”‚Β Β  └── views
β”‚Β Β      β”œβ”€β”€ app.blade.php
β”‚Β Β      β”œβ”€β”€ emails
β”‚Β Β      β”‚Β Β  └── exception.blade.php
β”‚Β Β      β”œβ”€β”€ errors
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ 401.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ 403.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ 500.blade.php
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ 503.blade.php
β”‚Β Β      β”‚Β Β  └── layout.blade.php
β”‚Β Β      β”œβ”€β”€ socialite
β”‚Β Β      β”‚Β Β  β”œβ”€β”€ callback.blade.php
β”‚Β Β      β”‚Β Β  └── denied.blade.php
β”‚Β Β      └── welcome.blade.php
β”œβ”€β”€ routes
β”‚Β Β  β”œβ”€β”€ api.php
β”‚Β Β  β”œβ”€β”€ channels.php
β”‚Β Β  β”œβ”€β”€ console.php
β”‚Β Β  └── web.php
β”œβ”€β”€ server.php
β”œβ”€β”€ tailwind.config.js
β”œβ”€β”€ tailwindcss-perspective.js
β”œβ”€β”€ tsconfig.json
β”œβ”€β”€ tsconfig.vite-config.json
└── vite.config.ts

76 directories, 380 files

  • Tree command can be installed using brew: brew install tree
  • File tree generated using command tree -a -I '.git|node_modules|vendor|build|storage|tests|.DS_Store|.env'

License

Laravel-Spa is licensed under the MIT license. Enjoy!

About

A Laravel + Socialite + Vite + Vue 3 + TailwindCSS SPA Boilerplate with user authentication, registration, email verification, social media authentication, password recovery, user management, and roles/permissions management. Uses TailwindCSS. While the front end is part of this repository it is a completely separated Vue 3 front end.

Topics

Resources

License

Security policy

Stars

Watchers

Forks

Packages

No packages published