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 a2dd793 commit 81c82d9Copy full SHA for 81c82d9
resources/views/tailwind/pages/tag_index.blade.php
@@ -43,18 +43,14 @@
43
</div>
44
45
<h2 class="text-xl font-semibold mb-2">
46
- @if(method_exists($item, 'getUrl'))
47
- <a href="{{ $item->getUrl() }}" class="hover:text-blue-600">
48
- {{ $item->title }}
49
- </a>
50
- @else
+ <a href="{{ $item->getViewUrl() }}" class="hover:text-blue-600">
51
{{ $item->title }}
52
- @endif
+ </a>
53
</h2>
54
55
@if(method_exists($item, 'intro') && $item->intro)
56
<p class="text-gray-600 mb-3">
57
- {{ Str::limit(strip_tags($item->intro), 200) }}
+ {{ Str::limit(strip_tags($item->intro), 400) }}
58
</p>
59
@endif
60
0 commit comments