Documentation

Introduction | Laravel Jetstream

Installation

<aside> ⚠️ New Applications Only Jetstream should only be installed into new Laravel applications. Attempting to install Jetstream into an existing Laravel application will result in unexpected behavior and issues.

</aside>

composer require laravel/jetstream
php artisan jetstream:install livewire --teams

# install and build your NPM dependencies and migrate your database
npm i
npm run dev
php artisan migrate

# if you when ti use account pics
php artisan storage:link

<aside> ⚠️ Caution to app_url in .env file set the right url to your root site: http://my.website.co/ ← don't forget the last /

</aside>