Leave Management System and Lecture Arranagement
Students can apply for Half/Full Leave
Faculty can apply for Leave and Arranage their lectures with the help of system
- Admin
- Student
- Faculty
- HOD
- Director
- Gatekeeper
Framework:- Laravel Framework 5.7.6
Please check the official laravel installation guide for server requirements before you start. Official Documentation
Clone the repository
git clone [email protected]:virenkapadia07/SSWS.git
Switch to the repo folder
cd laravel-realworld-example-app
Install all the dependencies using composer
composer install
Copy the example env file and make the required configuration changes in the .env file
cp .env.example .env
Import "college.sql" file in MySQL Database
Configure your database in .env file
Start the local development server
php artisan serve
- barryvdh/laravel-dompdf - For Genetrating PDF
- System must have Python3 (with pandas libarary) installed
app- Contains all the Eloquent modelsapp/Http/Controllers/Api- Contains all the api controllersapp/Http/Middleware- Contains the auth middlewareapp/Http/Requests/Api- Contains all the api form requestsconfig- Contains all the application configuration filesdatabase/factories- Contains the model factory for all the modelsdatabase/migrations- Contains all the database migrationsdatabase/seeds- Contains the database seederroutes- Contains all the api routes defined in api.php filetests- Contains all the application teststests/Feature/Api- Contains all the api tests
.env- Environment variables can be set in this file
Note : You can quickly set the database information and other variables in this file and have the application fully working.