github TappNetwork/Filament-Form-Builder v1.2

latest releases: v1.55, v4.0.4, v1.54...
15 months ago

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);
    });

Don't miss a new Filament-Form-Builder release

NewReleases is sending notifications on new releases.