So far we have learned a few important things, including routing, controller , view, database migrations, and eloquent model. Actually we’ve learned a lot and done a lot of things that cannot be done in such a short period of time with such small lines of code.
We’ve used MySQL database to build a simple task table where we can now create, retrieve, update, and finally delete our tasks using tinker on our terminal.
In fact we’ve done a lot of things quite easily with less code. You’ve built a full-fledged CRUD (create, retrieve, update, delete) application without writing a single line of ...