Skip to content

2.4.34

Compare
Choose a tag to compare
@atmonshi atmonshi released this 14 Jul 15:31
d04f56e

What's Changed

adding the ability to parse the content, by default: BoltParser is avaliable.
lets you include or (embed) bolt form into any page with the syntax: <bolt>formSlug</bolt>
This will be parsed to a livewire component to display the full form.

How to use:

Make sure to add this to your config:

'parsers' => [
    \LaraZeus\Sky\Classes\BoltParser::class,
],

You can copy that class and create your own parser, too, then add it to the array, and Sky will loop them all.

I also added a tab in forms to let users copy and paste.
Of course, it will be visible only if you install Sky with Bolt :)
Screenshot 2023-07-14 at 6 26 23 PM

Remember to update your views.

Full Changelog: 2.4.33...2.4.34