Laravel 10 livewire crud with jetstream and tailwind CSS. Here, we will learn about how to create a crud application using jetstream and tailwind CSS. Laravel Jetstream is a beautifully designed application starter kit for Laravel and provides the perfect starting point for your next Laravel application.
Follow this below steps to setup application:
composer install
.env
file, for window user use copy
indsted of cp
cp .env.example .env
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laravel
DB_USERNAME=root
DB_PASSWORD=
php artisan key:generate
php artisan migrate
npm
packagenpm install
php artisan serve
Application run in http://127.0.0.1:8000