Content text
In the Filament backend, I have created a text field named "intro" that includes toolbarButtons. However, when attempting to retrieve the text value on the frontend, I get the entire line.. in view <p class="text-4xl">{{ $intro }}</p>
Hope your help, thanks
Solution:Jump to solution
you have to parse the markdown into html when you output it on the frontend.
3 Replies
Solution
you have to parse the markdown into html when you output it on the frontend.
{!! str($intro)->markdown() !!}
something like that.
Resolved thanks a lot your appreciate help!!