Skip to content

Instantly share code, notes, and snippets.

View softsearch's full-sized avatar

Softsearch Limited softsearch

View GitHub Profile

You will need to do the following in PHP -Laravel Framework or Python - (Django or Flask Framework) and Javascript. For this assessment you will need to create a public github repo and host the project on heroku .

Write a simple time management system.

  • User must be able to create an account and log in
  • User can add (and edit and delete) a row what he has worked on, what date, for how long.
  • Implement at least three roles with different permission levels: a regular user would only be able to CRUD on their owned records, a user manager would be able to CRUD users,
@softsearch
softsearch / README.md
Last active December 8, 2021 05:16
Admin panel to manage companies.

Basically, project to manage companies and their employees. Mini-CRM.

The application should achieve the following objectives.

  • Basic Laravel Auth: ability to log in as administrator
  • Use database seeds to create first user with email admin@admin.com and password “password”
  • CRUD functionality (Create / Read / Update / Delete) for two menu items: Companies and Employees.
  • Companies DB table consists of these fields: Name (required), email, logo (minimum 100×100), website
  • Employees DB table consists of these fields: First name (required), last name (required), Company (foreign key to Companies), email, phone
  • Use database migrations to create those schemas above
  • Store companies logos in storage/app/public folder and make them accessible from public