imagdic/blitz

Minimal authentication scaffolding with Inertia.js, Vue.js and Tailwind.

v0.0.3 2020-12-16 15:54 UTC

This package is auto-updated.

Last update: 2024-09-27 03:43:22 UTC


README

Minimal authentication scaffolding with Inertia.js, Vue.js and Tailwind CSS.

Installation

laravel new foobar-app

cd foobar-app

composer require imagdic/blitz --dev

php artisan blitz:install

This will install official Inertia.js Laravel adapter for server-side along with Ziggy so we can use routes in JavaScript.
For client-side it will install official Inertia.js adapter, Tailwind CSS and Vue.js.

After successful installation you'll have minimal authentication (Login and Register).

Verification

User model has to implement Illuminate\Contracts\Auth\MustVerifyEmail and add verified middleware on routes you want to protect.
See Email Verification for more details.

Further plans

  • Email verification
  • Password reset and Forgot password
  • Extend dashboard page

Alternatives