Skip to content

Releases: TappNetwork/Filament-Form-Builder

v1.25

09 Aug 20:21
Compare
Choose a tag to compare

This Update fixes a bug when the first option was selected in a radio select.

v1.24

08 Aug 16:36
Compare
Choose a tag to compare

This PR adds a $blockRedirect property to the FilamentForm/Show component. Passing this as true to the component will prevent the redirect action when a new form entry is saved.

v1.23

06 Aug 20:07
Compare
Choose a tag to compare

Add styles to plugin

v1.22

06 Aug 19:58
Compare
Choose a tag to compare

Include stylesheet for filament classes

v1.21

05 Aug 18:55
Compare
Choose a tag to compare

Fixes a typo in locking action visibility and adds a locked column to form resource.

v1.2

05 Aug 18:46
Compare
Choose a tag to compare

Support locking a form to prevent data integrity issues

1.2 supports locking forms so that entries from a form can always be compared apples to apples over time with no risk of the form being changed and previous entries becoming incompatible with new entires. If you are upgrading from 1.0 or 1.1 to 1.2, create a migration with the following method to reflect this change

    Schema::table('filament_forms', function (Blueprint $table) {
        $table->boolean('locked')->default(false);
    });