Giter Club home page Giter Club logo

employee-mgmt-laravel5.4-adminlte's Introduction

Available functionalities:

  • Login and logout, forget password (Lock account in 5 minutes after 3 failed attempts).

  • Manage employees (Add, edit and delete).

  • Manage countries, cities, states (Add, edit and delete).

  • Manage users (Add, edit and delete).

  • Manage salary (Add, edit and delete).

  • Manage division (Add, edit and delete).

  • Manage departments (Add, edit and delete).

  • Make reports (export to Excel and PDF).

  • Search (with multiple combine fields).

  • Pagination

  • Validation

  • Responsive

Guide Video

https://www.youtube.com/watch?v=Jbt5bEgv_QM

Hotfix Videos

https://www.youtube.com/watch?v=bDmmKOdgIeY

https://www.youtube.com/watch?v=cEdQvdYLuSg

License

The Laravel framework is open-sourced software licensed under the MIT license.

โ˜• Support

You can support me so that there will be more good open source projects in the future

Buy Me A Coffee

employee-mgmt-laravel5.4-adminlte's People

Contributors

hoadv avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

employee-mgmt-laravel5.4-adminlte's Issues

php artisan migrate has an error

On initial migrate I get an error complaining about "can't add foreign key"

  SQLSTATE[HY000]: General error: 1215 Cannot add foreign key constraint (SQL  
  : alter table `employees` add constraint `employees_city_id_foreign` foreig  
  n key (`city_id`) references `city` (`id`))                                  
                                                                               

                                                                          
  [PDOException]                                                          
  SQLSTATE[HY000]: General error: 1215 Cannot add foreign key constraint 

Error on migrate

I get this error on migrate, I use xampp version 7.2.2 with specs:

  • PHP to 7.2.1
  • MariaDB to 10.1.30
  • phpMyAdmin 4.7.7

[Illuminate\Database\QueryException]
SQLSTATE[HY000]: General error: 1005 Can't create table isave_db.#sql-2fbe_b (errno: 150 "Foreign key constraint is incorrectly formed") (SQL: alter table employee_salary add constraint employee_salary_employee_id_foreign foreign key (employee_id) references employee (id))

Issue when running the migrate

When i run the migrate command I got the error below. Any idea on how to fix it?

[Illuminate\Database\QueryException]
SQLSTATE[HY000]: General error: 1005 Can't create table employee_db.#sql-123c_53 (errno: 150 "Foreign key constraint is incorrectly formed") (SQL: alter table employees add cons
traint employees_city_id_foreign foreign key (city_id) references city (id))

Every page edit time error

at HandleExceptions->handleError(2, 'count(): Parameter must be an array or an object that implements Countable', 'J:\xampp\htdocs\employee-mgmt-laravel5.4\app\Http\Controllers\CountryController.php', 81, array('id' => '1', 'country' => object(Country)))

Department typo

in app/Http/Controllers/DepartmentController.php
is: use App\department;
should be: use App\Department;

Create employee gives the following error!

(2/2) QueryException
SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add or update a child row: a foreign key constraint fails (callcentre.employees, CONSTRAINT employees_company_id_foreign FOREIGN KEY (company_id) REFERENCES company (id)) (SQL: insert into employees (lastname, firstname, middlename, address, city_id, state_id, country_id, zip, age, birthdate, date_hired, department_id, division_id, picture, company_id, updated_at, created_at) values (Aiman, Ahmed, Aiman, Izzudheen Magu, 20329, M. Rankoralige, 1, 1, 1, 20329, 29, 1990/03/01, 2017/07/24, 1, 1, avatars/JdzVGpL3M6G2bJFq9GY35xsyOsmYmjlf0OhilvQY.jpeg, 0, 2017-07-01 16:00:37, 2017-07-01 16:00:37))

migration issues

country, state,city,department and devision migration files should have lesser time stamps than employees migration file.

at present employee table is being created first before creating child tables like country,state, city, devision and department so it is giving error saying foreign key constraint wrongly framed.

so we need to create the child tables first so that employee table can have foreign keys for these child tables.

currently migration error is there, i resolved it by changing file name of the child tables,
I gave lesser date and executed following command,

"php artisan migrate"

migration was succesfully completed..

php artisan db:seed error

when i try to execute the code php artisan db:seed it gives me these errors:
[Illuminate\Database\QueryException]
SQLSTATE[HY000] [2002] No connection could be made because the target machine actively refused it.
(SQL: insert into users (username, email, password, lastname, firstname, remember_token, updated_at , created_at) values (admin, [email protected], $2y$10$XuU3jo.4m5ZePqM9S6d8u.CfSmyXLwNLrNoFcLzHtnS./Ksf78rB2, Mr,
admin, qZsLqjAmnt, 2017-08-18 14:51:52, 2017-08-18 14:51:52))

[PDOException]
SQLSTATE[HY000] [2002] No connection could be made because the target machine actively refused it.

Change color of the Navbar and ActionsBar in BigBlueButton

We are running BigBlueButton Ver. 2.6.15 on a Ubuntu 20.04 server. We need to change the color of the Navbar and the ActionsBar located above and below the central Presentation container on the classroom screen. The current color is dark blue (#06172A). Having searched through all configurations files I still cannot find where in BBB the colors of the Navbar and ActionsBar are defined.

If anyone can give me the name and location of the file(s) that define those colors, I will be most grateful !

New User Registration is giving error

New User Registration is giving error

In the RegisterController in create() function
'name' => $data['name'],
should be replaced by
'username' => $data['username'],
because in database column name is 'username'

Artisan Migrate Issues

when i try to execute php artisan migrate it gives me these errors below:
[Illuminate\Database\QueryException]
SQLSTATE[HY000] [2002] No connection could be made because the target machine actively refused it.
(SQL: select * from information_schema.tables where table_schema = employees_db and table_name = migrations)

[PDOException]
SQLSTATE[HY000] [2002] No connection could be made because the target machine actively refused it.

pls help

Missing vendor Folder

The vendor is missing in this repository leading to error:

_

PHP Fatal error: Uncaught Error: Class 'Illuminate\Foundation\Application' not found in /home/vyruss/click/employee-mgmt-laravel5.4-adminlte/bootstrap/app.php:14
Stack trace:
#0 /home/vyruss/click/employee-mgmt-laravel5.4-adminlte/artisan(18): require_once()
#1 {main}
thrown in /home/vyruss/click/employee-mgmt-laravel5.4-adminlte/bootstrap/app.php on line 14

_

I pasted a vendor folder into the offline repo. Still, Another error was prompted;

**_

In excel.php line 182:

Class 'PHPExcel_Shared_Font' not found

_**

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.