2.4.34
What's Changed
- fix: show pages in the sidebar and no result for search by @atmonshi in #129
- add Content parser by @atmonshi in #118
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 :)
Remember to update your views.
Full Changelog: 2.4.33...2.4.34