- Changes since the last episode.
- Switched out laravelcollective code to standard html code.
- Moved validation messages to part of the form.
- Updated elixir to version 5.
- Create a new migration for products table.
- id int(11)
- product_name varchar(255)
- sku varchar(30)
- price decimal(5,2)
- description text
- timestamps
- Create restful routes for products.
- Create model for Product.
- Order of creation.
- view all page
- pagination
- view (show) link for each record
- if no record exist, show message, else show records
- create record page
- form validation
- view all page
Leave a Reply