This is a solution to one of the Laravel skills tests
It is a webpage with a form that has the following text input fields: Product name, Quantity in stock, Price per item.
The submitted data of the form should be saved in an XML / JSON file with valid XML / JSON syntax. Underneath of the form, the web page should display all of the data which has been submitted in rows ordered by date time submitted, the order of the data columns should be: Product name, Quantity in stock, Price per item, Datetime submitted, Total value number. The "Total value number" should be calculated as (Quantity in stock * Price per item). The last row should show a sum total of all of the Total Value numbers.
Solution requirements: Use PHP / Html / Javascript / CSS. Use Twitter Bootstrap. The form should be submitting the data and updating the data being displayed on the page using Ajax.