TALL-forms
  • TALL-forms
  • Installation
    • Quickstart: Artisan cmd
    • Manual installation
      • Package
      • Translations
      • Css & Theme
      • Javascript
      • Tailwind
      • Laravel Mix
      • Wrapper view
      • Laravel Jetstream/Breeze
  • Upgrade v7 to v8
    • Configuration changes
    • Component & Field changes
    • Blade view changes
    • Notification changes
    • Styling changes
  • Concept
    • Configuration
    • Validation
    • Styling
    • Icons
    • Javascript
    • Layout vs Wrapper
    • Model binding
    • Manually saving data
    • Extend Blade Components
  • Create Forms
    • Form Data
    • Form Types
      • Standard form
      • As modal
      • Without buttons
      • Fields only
      • Headless
    • Form attributes
    • Form buttons
    • Form slots
    • Form methods
    • Lifecycle hooks
    • Render a form
    • Mass generate
  • Fields
    • Declaration
    • Labels
    • Field Slots
    • Field methods
    • Custom field attributes
    • Conditional field
    • Custom view
    • Custom field
    • Custom Livewire component
    • Relations
    • Fields
      • Checkbox
      • Checkboxes
      • FileUpload
      • Honeypot
      • ImageCropper
      • Input
      • Password
      • InputArray
      • KeyVal (array)
      • Radio
      • Range
      • Repeater (array)
      • Search
      • Select & Multiselect
      • Tags
      • TagsSearch
      • Textarea
      • Trix
      • SpatieTags
    • Sponsor Fields
      • More Inputs
      • CKEditor
      • DatePicker
      • Heading
      • Markdown
      • Panels
      • SearchList
      • SelectOptGroup
      • Tabs
      • Trix, file-uploads
  • Blade components
    • Notifications
    • Label wrapper
    • Button
    • Modal blade component
    • Modal form blade component
  • Examples
    • Input examples
    • Array fields example
Powered by GitBook
On this page
  • Translations in config moved to language files
  • Alpine @entangle.defer, config
  • Config, include external scripts
  • Republish/merge the config files

Was this helpful?

  1. Upgrade v7 to v8

Configuration changes

PreviousUpgrade v7 to v8NextComponent & Field changes

Last updated 3 years ago

Was this helpful?

Translations in config moved to language files

Translations in config/tall-forms have been moved to separate language files. Please read more on the

Alpine @entangle.defer, config

There is a new config that affects all fields where Alpine entangles the input value. You can override it with the ->deferEntangle(bool $state) method on individual fields. (I've had multiple requests that this should be "true" by default...)

Set it to false to avoid breaking change.

'defer-entangle' => true, //set to false to avoid breaking change

Config, include external scripts

There is a new configuration option to include external CDN links by default. It is set to true by default. The ->includeExternalScript(bool $state=true) method has changed. It now accepts a boolean, that overrides config.

Set it to false to avoid breaking change.

'include-external-scripts' => true, //set to false to avoid breaking change

Republish/merge the config files

Don't forget php artisan config:clear and php artisan cache:clear

php artisan vendor:publish --tag=tall-form-config
Translations page ->