- Clone the repository to your local machine
git clone "https://github.com/HindAljendy/Task_Group_4_BACKEND.git"
- Install dependencies
composer install
- Copy the .env.example file and rename it to .env
cp .env.example .env
- Generate application key
php artisan key:generate
-
Create a new database and update the .env file with your database credentials
-
Migrate the database
php artisan migrate
- Seed the database
php artisan db:seed UserSeeder
- Start the development server
php artisan serve