REST API backend for an android blood bank application using Laravel framework
clone the repository
git clone https://github.com/MuhammadAlsaied/blood-bank.git # or clone your own forkopen your terminal and 'cd' to source code directory, then run composer install command to install all different packages.
composer installopen .env file and provide your database information and make sure that your database is up and running
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=task-test
DB_USERNAME=root
DB_PASSWORD=""run migrations
php artisan migrate --seedstart your server
php artisan serve –port=8888Your app should now be running on localhost:8888.