Skip to content

nirav-gajera/company-and-employee-management

Repository files navigation

Build Status Total Downloads Latest Stable Version License

About Laravel

Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel attempts to take the pain out of development by easing common tasks used in the majority of web projects, such as:

Laravel is accessible, yet powerful, providing tools needed for large, robust applications.

Functions

Adminpanel to manage companies

  1. Basic Laravel Auth: ability to log in as administrator

  2. Use database seeds to create first user with email [email protected] and password "password"

  3. CRUD functionality (Create / Read / Update / Delete) for two menu items: Companies and Employees.

  4. Companies DB table consists of these fields: Name (required), email, logo (minimum 100x100), website

  5. Employees DB table consists of these fields: First name (required), last name (required), Company (foreign key to Companies), email, phone

  6. Use database migrations to create those schemas above

  7. Store companies logos in storage/app/public folder and make them accessible from public

  8. Use basic Laravel resource controllers with default methods - index, create, store etc.

  9. Use Laravel's validation function, using Request classes

  10. Use Laravel's pagination for showing Companies/Employees list, 5 entries per page

  11. Use Laravel's starter kit for auth and basic theme, but remove ability to register