Easiest way to modify Streams table view in admin to add the created and and/or updated date field to the columns
Created 6 years ago by b1gw0rm

Looking for the best/easiest way to modify the default table view for all Streams in the admin to show the created and updated date fields in the columns to the right of the first few fields that Pyro automatically selects to display in the table/grid.

ryanthompson  —  6 years ago

I would just use a service provider to bind your own table builder (same name even if you want) to the table builder you are trying to override. Just change it there on yours - keep in mind if the table has custom handler for columns or something you will need to define those since it's not going to be automatically detected anymore like this:

protected $columns = TheOldHandler::class;