In Laravel, are all controllers only supposed to have the basic CRUD methods, as shown in the link below?
https://laravel.com/docs/5.3/controllers#resource-controllers
That is, should the only methods in a controller be:
- index()
- create()
- store()
- show()
- edit()
- update()
- destroy()
Thanks.