Column Table wrapper as callback
Created 5 years ago by iprosoft

Hi, is there any option to add callback to column wrapper property ? Now I can only use HTML bo it would be to long so I wan't to separate it to another class but I accept only string valuses.

protected $columns = [ 'name' => [ 'wrapper' => 'Some\Namespace\ColumnWrapper@handle', ];

ryanthompson  —  5 years ago Best Answer

You could have to use a column handler and do the logic there.

FooBarTableBuilder
FooBarTableColumns

The column handler will need a handle method which is method injected - $builder is available there too. Then you can use a closure for the wrapper.

iprosoft  —  5 years ago

Thanks for reply. I've managed to find it earlier 😄