If I need to insert a css file or a script, I should do respectively:
<link href="{!! asset('css/style.css') !!}" type="text/css" />
<script type="text/javascript" src="{!! asset('js/app.js') !!}"></script>
On some sites, I've seen that something like this exists (when it was a dependency related to a specific library):
{{ HTML::image('img/picture.jpg') }}
Is there any way I can embed images within my HTML page directly in the scope of the blade file without having to go to external libraries?
My intention is actually to insert SVG files and I know that if you can insert any .jpeg
it should also be possible to insert a .svg
.