- Basic Laravel Auth: ability to log in as administrator
- Use database seeds to create first user with email [email protected] 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
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 .
- 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,