install xammp v3.3.0 PHP Version 7.2.3 Laravel Version 8.83.1
After install, put the library-api inside your htdocs folder
Before to run
File .env set up the following variables DB_PORT=3307 DB_DATABASE=db_library DB_USERNAME=root DB_PASSWORD=
Create database db_library
php artisan migrate
php artisan tinker App\Models\Categoy::factory()->count(20)->create(); App\Models\Book::factory()->count(50)->create();
php artisan serve