Employee Management System – With AdminLTE

Employee Management System is a laravel based application. This is simple yet really educational for learning purpose. So, programmers who are new to laravel can use this program as learning guide.

This application maintains the details of employee in the organization. As a result, the company can achieve greater efficiency rate from employees. Traditionally, people used registers for maintaining records which was less efficient.

Features of Employee Management System is here below:

  • Add, update and delete employees
  • CRUD operation on basics like department, division, city, state and so on.
  • Search employees on the basis of their first name and department

Some images of the system are here below:

1 1
Dashboard Page
2 1
Create Employee Page
3 1
Employee List Page

Steps for installation of system:

git clone https://github.com/LaravelProjects/Employee-Management-System.git employee-mgmt-system
cd employee-mgmt-system
composer install
cp .env.example .env
php artisan migrate --seed
php artisan key:generate
php artisan storage:link
php artisan serve

Alternatively, you can download project from here as well.

6 thoughts on “Employee Management System – With AdminLTE”

    • I followed the description above on how to power it up and it worked,

      1: create a database in any of the local servers you are using either Xampp or Wamp
      2: make it a default database by just entering the database name and select utf8 as your database set.
      3: change the respective name on your .env file from “homestead” to your DB name and also USERNAME to ‘root’ and clear that of the PASSWORD set as the secret to empty.

      I think this should solve it, hopefully you won’t have any error

      Reply

Leave a Comment