Section Header Button
Has anyone been able to add an action button in the top right of a section? It looks like there is a spot for headerEnd.. but maybe it isn't currently in use?
Open to getting creative as long as it works.
2 Replies
// Hack incoming - but its working
Section::make('Items')
->schema([
Actions::make([
Actions\Action::make('addItem')
])
->extraAttributes(['style' => 'margin-top:-64px'])
->alignRight(),
// other components here
]),
Nice, clever π