sonali-webmavens / abhinendra

0 stars 0 forks source link

Mini CRM #1

Open sonali-webmavens opened 3 months ago

sonali-webmavens commented 3 months ago

Make an adminpanel to manage companies Basically, a project to manage companies and their employees. Mini-CRM.

  1. Basic Laravel Auth: ability to log in as administrator
  2. Use database seeds to create first user with email admin@admin.com 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 100×100), 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, 10 entries per page
  11. Use Laravel make:auth as default Bootstrap-based design theme, but remove ability to register
  12. https://user-images.githubusercontent.com/456840/130544886-e25bf7f5-0177-4808-ba92-894dd5978bb6.png You may use this https://github.com/LaravelDaily/Laravel-Roadmap-Learning-Path for your reference in case you need to clear any concepts