double check whether typo error on .blade file extension naming...
Laravel 9 escape curly brackets not working in a component
I have a free admin template and I've separated the top-navbar, left and right sidebars as well as the footer into their respective components. In my right-navbar, I'm having an issue where curly braces are not recognized as laravel escape symbols and are being included in the "scr=" parameter of an tag. For example I have
<img src="{{ asset('admin/images/image1.png') }}" alt="" /> The source code output to the browser is rendered as <img src=" {{ https:/mysite.test/admin/images/image1.png }}" alt=""/> All other components including the ones I mentioned above are working fine.
Pastebin: https://pastebin.com/23YAt3BQ
I'm using the free version of the Skydash Admin template. https://bootstrapdash.com/demo/skydash-free/template/
Any idea what would cause this issue?
Please or to participate in this conversation.