Basic Laravel app to display a book and author management system.
- Clone the repository.
- Create an
.env
file by copying the.env.example
file and fill out the details to match your setup. - Create a database amd make sure to set it in your
.env
file. - Run
php artisan migrate:fresh
if you want a clean empty database orphp artisan migrate:fresh --seed
if you want dummy data to work with. - Run
composer install
andnpm install
to ensure your NPM and Composer packages have been installed and are usable. - To start the local development server, run
npm run dev
andphp artisan serve