All notable changes to :package_name
will be documented in this file.
Actually commit changes described in last release
Fixes a bug with copy action
This release add a copy action for filament forms.
Makes type field required when creating a field.
Add 'fb-form-user-container' class for styling form results container.
Sends id of saved entry instead of entry itself when entrySaved event is dispatched to resolve intermittent error with laravel model biding on event consumption.
This Update fixes a bug when the first option was selected in a radio select.
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.
Add styles to plugin
Include stylesheet for filament classes
Fixes a typo in locking action visibility and adds a locked column to form resource.
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);
});