CRUD show
The show method of your CRUD class defines what the detail view of a model looks like. The method receives a
Davesweb\Dashboard\Services\Table object as its only parameter, and it must return nothing (void).
Even if your CRUD defines a
showaction, this method is optional. If this method is not defined, theindexmethod is used instead.
This method works exactly the same as the index method: CRUD index, with the exception that the
searching, ordering and filtering is ignored.