This is an implementation of Laravel CRUD tutorial. A blog about this can be found here: Laravel 10 CRUD and Image Upload Tutorial with Laravel Breeze and Repo Example | Fajarwz.
composer install
cp .env.example .env
php artisan key:generate
- Open
.env
file - Create a database and connect it with Laravel with filling the DB name in
DB_DATABASE
key - Adjust the
DB_USERNAME
- Adjust the
DB_PASSWORD
php artisan migrate
Install NPM packages first
npm install
Run local web server
php artisan serve
Open new console and run the app with Vite
npm run dev
php artisan test