Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
759 B
PHP
Raw Permalink Normal View History

<div class="row">
<div class="col-md-12">
<div class="panel panel-default panel-condensed">
<div class="panel-heading">
2023-10-29 22:45:23 -05:00
<strong>{{ $title }}</strong> <a href="{{ $url }}">[EDIT]</a>
</div>
<div class="panel-body">
<div class="row">
<div class="col-sm-12">
2023-10-29 22:45:23 -05:00
{{-- This is a comment. Below we output the markdown output unescaped because we want the raw html
to be output to the page. Be careful with unescaped output as it can lead to security issues. --}}
2021-10-19 17:20:32 +02:00
{!! Str::markdown($device->notes ?? '') !!}
</div>
2022-10-10 18:13:10 +02:00
</div>
</div>
</div>
</div>
</div>