Course Allocate Laravel Project Setup

This guide outlines the steps to set up the "Course Allocate" Laravel project after cloning the repository.

1. Clone the Repository

git clone https://github.com/aykdgreat/course_allocate.git

2. Install Composer Dependencies

composer install

3. Install NPM Packages

npm install

Ensure you have Node.js and npm installed before running this command.

4. Create a Copy of the .env File

cp .env.example .env

5. Generate Application Key

php artisan key:generate

6. Configure the Database in .env

Set your database connection details in the .env file.

7. Migrate Database

php artisan migrate

8. Seed the Database

php artisan db:seed

9. Run Development Server

php artisan serve

Access the application in your browser at http://localhost:8000.

Additional Notes