Introduction
This is a fully functioning asset management system. In a nutshell, an IT administrator can CRUD product lines and the corresponding assets, and employees can view and request for assets. Users and admins also have a transactions page to view and update the status of the requests. Users can cancel their own requests while admins can approve, reject, and complete all requests.
To test the functionality as a user, simply click the link, register, and login. To test as an admin, use admin@email.com and 12345678 for the password. Note that this application and its database are hosted for free via Heroku and db4free so the speed might not be optimal.
Link (already taken down by Heroku): https://assetmgtdennis.herokuapp.com/
Work Breakdown:
- Generate Laravel web app, set database connection in env, authentication scaffolding, database design
- Creation of models, migrations, controllers, policies, and gates
- Create product line and create individual asset functionality for admin
- Retrieve and view product lines functionality for all roles (non-admin only has to see product lines, no need to see individual assets)
- Update and disable product line / asset functionality for admin
- Create request for non-admin
- Retrieve and view requests by all roles
- Update request status functionality for non-admin (cancel pending) and admin (approve, reject, complete)
- Heroku hosting
Features / Requirements:
- Users may have the role of an admin or a non-admin
- Admin users may create, retrieve, update, and disable product lines
- A product line may have many assets
- An asset must be uniquely identifiable
- An asset can either be available or unavailable at any given time
- Similar to the product line / asset category, admin users have full CRUD functionality over assets
- Non-admin users may retrieve product lines
- Non-admin users may request for a specific product line for a specific borrow and return date
- Requests have a default status of "pending" upon creation
- Pending requests may have their status changed to the following:
- Cancelled by the user who made the request
- Rejected by an admin
- Approved by an admin, at which time an asset will be assigned to the request
- An asset assigned to an approved request will have its status set to unavailable for the duration of its assignment
- Approved requests can have their status changed to completed only by an admin user
- Upon being set to completed, the asset assigned to it will be made available again
- Requests / transactions may only be created by non-admin users but may be updated by all roles given the conditions above
- Retrieval / viewing of requests may be done regardless of user role
- Admin users should be able to view all requests
- Non-admin users may only view requests that they made
- Both views should have 3 tables:
- Pending requests table with the following columns:
- Request ID, product line requested, borrow date, return date, request date, action (cancel for non-admin, approve or reject for admin)
- Approved requests table with the following columns:
- Request ID, assigned asset ID, borrow date, return date, approval date
- Completed requests table (cancelled, rejected, and returned requests will fall here) with the following columns:
- Request ID, asset ID (N/A if rejected or cancelled), borrow date, return date, status, completion date