E-Report Erenos is a web application built using the Laravel 9 framework. This application provides features for managing student data, teachers, subjects, attendance, grades, and final student report results.
To install and set up E-Report Erenos Laravel 9, follow the steps below:
- PHP 8.0 or higher
- Node.js 16.xx or higher
- NPM
- Composer
- MySQL
- Web server (e.g., Apache or Nginx)
Clone the E-Report Erenos repository from GitHub by running the following command:
https://github.com/danisec/ereport-erenos.git
Navigate to the project directory and install the required dependencies:
Using Composer
composer install
Using NPM
npm install
Rename the .env.example file to .env and update the necessary configuration settings such as the database connection details.
cp .env.example .env
Generate a new application key using the following command:
php artisan key:generate
Run the database migrations to create the required tables:
php artisan migrate --path="database/migrations"
php artisan migrate --path="database/migrations/*"
Run the database seed user:
php artisan db:seed --class=UserSeeder
php artisan db:seed --class=SettingSeeder
You can start the development server using the following command:
php artisan serve
npm run dev
The application should now be running on http://localhost:8000 or http://127.0.0.1:8000. You can access this URL in your web browser to start using E-Report Erenos.
Role Superadmin
username: superadmin
password: superadmin12345
Role Guru
username: guru
password: guru12345
Have a bug or an issue with this E-Report Erenos? Open a new issue here on Github.