I have all my table cell aligned to the top with verticalAlignment(VerticalAlignment::Start)
ViewColumn::make('address')->label('Address')
->view('filament.tables.columns.address-complete')
->verticalAlignment(VerticalAlignment::Start),
How can I get the action and the row select field also aligned to the top?
BTW: using global config in the ServiceProvider does also have no effect on the row select and the action button
Column::configureUsing(function (Column $column): void {
$column
->verticalAlignment(VerticalAlignment::Start);
});