Default button alignment for Repeater action

Currently default behaviour is to center a button, this can be overrided with ->addActionAlignment(Alignment::Start), however it bloats the code. Is there anyway to set a default position? Or override / extend / hack class to do so?

This also looks strange since Forms submit button is placed on the left.
Solution
You could set a default via ServiceProvider I suppose. Something like:

Repeater::configureUsing(function (Repeater $repeater) {
    return $repeater
        ->addActionAlignment(Alignment::Start)
});
Was this page helpful?