Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
90 changes: 83 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,92 @@
# EMPLOYEES' INFORMATION MANAGEMENT
(https://docs.google.com/document/d/e/2PACX-1vQEq-pOaY6tpcgOrz-_Okw_L8bIZoDvq8Fr1WW6xD6ExY_aUJm9INa-If0mb2sM8ql7YbLsmGSK6IyU/pub)


# SRKAS
### #hackGNE


## BRIEF OF THE PROJECT AND ITS POTENTIAL USERS..

- It can be used by the colleges/universities for employee's database management.

- This Application is based on php Laravel, Materialize-css version 1.0.0 alpha-4 , material icons.


#### This repository is forked from Sagar Maheshwari(https://github.com/SagarMaheshwary/Employee)

## WE HAVE CUSTOMIZED IT ACCORDING TO OUR REQUIREMENTS..

#### Customizations are as follows-

- Modified currency from USD to INR.
- Modified the Copywrite..
- Modified division tab to designation tab as per the requirements.
- Removed the username attribute.
- Customized the login page.
- Removed the countries table from our UI as well as Database.
- Modified the Copyright.
- Modified Division tab to Designation tab as required.
- Removed the Username attribute.
- Customised the login page.

## PRE-REQUISITES.

### php, laravel, xampp, mysql.



## INSTALLATION STEPS..

- make sure you already have xampp or wamp installed if you are on windows machine, mamp for mac , and lamp for linux.

- clone this repository to your local machine or just download the zip.

- install [Composer](https://getcomposer.org/download) first, then run this command in your command-line (you should be inside your project directory).
```bash
composer install
```

- rename .env.example to .env and add your database and mail driver credentials.

- generate application key.

```bash
php artisan key:generate
```

- create database tables.

```bash
php artisan migrate
```

- create a default admin and genders.

```bash
php artisan db:seed
```

- clear config (only if you make changes to .env file and restart the server if you are using laravel dev server).

```bash
php artisan config:clear
```

- Link the storage folder for images.

```bash
php artisan storage:link
```

- Start the development server.

```bash
php artisan serve
```
> In Laravel, all the requests are directed to index.php in public directory so, please use a Virtual Host instead of opening it from http://localhost/your-laravel-project/public (It doesn't work that way).

#### Admin Credentials
- Email :- admin@admin.com
- Password :- Password

#### ScreenShot

![screen shot](https://github.com/KirtiGautam/SRKAS/blob/master/screenshot/Dash_1.png)

Please star the project if you like it. Thank you!

### Developed by the team #SRKAS.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"devDependencies": {
"axios": "^0.17",
"axios": "^0.19",
"bootstrap": "^4.0.0",
"popper.js": "^1.12",
"cross-env": "^5.1",
Expand Down
19 changes: 9 additions & 10 deletions resources/views/dashboard/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
</div>
</div>
</a>
<!--

<a href="/countries" class="white-text">
<div class="mx-20 card-panel light-blue col s8 offset-s2 m4 offset-m2 l4 offset-l2 xl2 offset-xl1 ml-14">
<div class="row">
Expand All @@ -68,16 +68,15 @@
</div>
</div>
</div>
</a> -->
</a>

<!-- <a href="/salaries" class="white-text">
<a href="/salaries" class="white-text">
<div class="card-panel green col s8 offset-s2 m4 l4 xl2 mx-20">
<div class="row">
<div class="col s7 xl7">

<i class="material-icons medium white-text pt-5">attach_money</i>
<i style="font-size:20px;">₹
</i>
<i style="font-size:45px;">₹</i>
<!-- <i style="font-size:45px;">₹</i> -->

<h6 class="no-padding txt-md">Salaries</h6>
</div>
Expand All @@ -87,13 +86,13 @@
</div>
</div>
</a>
-->


<!--
<a href="/salaries" class="white-text">
<div class="mx-20 card-panel light-blue col s8 offset-s2 m4 offset-m2 l4 offset-l2 xl2 offset-xl1 ml-14">
<div class="row">
<div class="col s7 xl7">
<!-- <i class="material-icons medium white-text pt-5">attach_money</i>-->
<i class="material-icons medium white-text pt-5">attach_money</i>
<i style="font-size:45px">₹</i>
<h6 class="no-padding txt-md">Salaries</h6>
</div>
Expand All @@ -103,7 +102,7 @@
</div>
</div>
</a>

-->
<a href="/states" class="white-text hide-on-small-only">
<div class="card-panel blue col s8 offset-s2 m4 offset-m2 l4 offset-l2 xl2 mx-20">
<div class="row">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/employee/create.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<label>Gender</label>
</div>
<div class="input-field col s12 m6 l6 xl4">
<i class="material-icons prefix">attach_money</i>
<i style="font-size:20px;">₹</i>
<select name="salary">
<option value="" disabled {{ old('salary') ? '' : 'selected' }}>Choose a Salary</option>
@foreach($salaries as $salary)
Expand Down
2 changes: 1 addition & 1 deletion resources/views/employee/edit.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<label>Gender</label>
</div>
<div class="input-field col s12 m6 l6 xl4">
<i class="material-icons prefix">attach_money</i>
<i style="font-size:20px;">₹</i>
<select name="salary">
<option value="" disabled>Choose a Salary</option>
@foreach($salaries as $salary)
Expand Down
2 changes: 1 addition & 1 deletion resources/views/reports/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,4 @@
<!-- Card END -->
</div>

@endsection
@endsection
2 changes: 1 addition & 1 deletion resources/views/reports/report.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@
</tbody>
</table>
</body>
</html>
</html>
Binary file added screenshot/Dash_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed screenshot/ems.PNG
Binary file not shown.