Basic setup Laravel 8 + Fortify + Tailwind + Vue 2
The idea is to have basic public facing website handled by Laravel, so it's going to be quick and doesn't need to setup server rendering for Vue.
Private route URL is /app
, defined in:
app\Providers\RouteServiceProvider.php
resources\js\router.js
routes\web.php
env.example
and rename to .env
composer install
and npm install
php artisan migrate
php artisan serve
and in another terminal npm run watch
routes\web.php
: Remove all routes under Email Verification, and remove middleware verifiedconfig\fortify.php
: Remove Features::emailVerification()
app\Models\User.php
: Remove implements MustVerifyEmail