We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f3a9b8 commit e617415Copy full SHA for e617415
resources/views/grid-view/grid-view-item.blade.php
@@ -25,15 +25,15 @@
25
<h3 class="font-bold leading-6 text-gray-900">
26
@if ($hasDefaultAction)
27
<a href="#!" class="hover:underline" wire:click.prevent="onCardClick({{ $model->getKey() }})">
28
- {{ $title }}
+ {!! $title !!}
29
</a>
30
@else
31
32
@endif
33
</h3>
34
@if ($subtitle)
35
<span class="text-sm text-gray-600">
36
- {{ $subtitle }}
+ {!! $subtitle !!}
37
</span>
38
39
</div>
@@ -45,7 +45,7 @@
45
46
@if (isset($description))
47
<p class="line-clamp-3 mt-2">
48
- {{ $description }}
+ {!! $description !!}
49
</p>
50
51
0 commit comments