Skip to content

mrclaudee/api-crud-book

Repository files navigation

Laravel Book CRUD API

A simple CRUD application for a user to manage his books.

Config

After cloning the repository, run this to install dependencies

composer install

Generate a jwt secret and a application key

php artisan key:generate
php artisan jwt:secret

Then seed the database

php artisan migrate
php artisan bd:seed

Now you can launch the API

php artisan serve