@if (!empty($laws) AND count($laws) > 0)
Peraturan Perundang-undangan @if (count($laws) == 3) Lihat semua @endif
@foreach ($laws as $law)
{!! $law->typeFlatButton !!}
{!! Str::highlightPhrase($law->title, $term) !!}
{!! Str::highlightPhrase($law->category->name, $term) !!}
@endforeach @endif @if (!empty($monographs) AND count($monographs) > 0)
Monografi Hukum @if (count($monographs) == 3) Lihat semua @endif
@foreach ($monographs as $monograph)
{!! $monograph->typeFlatButton !!}
{!! Str::highlightPhrase($monograph->title, $term) !!}
{!! Str::highlightPhrase($monograph->category->name, $term) !!}
@endforeach @endif @if (!empty($articles) AND count($articles) > 0)
Artikel Hukum @if (count($articles) == 3) Lihat semua @endif
@foreach ($articles as $article)
{!! $article->typeFlatButton !!}
{!! Str::highlightPhrase($article->title, $term) !!}
{!! Str::highlightPhrase($article->category->name, $term) !!}
@endforeach @endif @if (!empty($judgments) AND count($judgments) > 0)
Putusan Pengadilan @if (count($judgments) == 3) Lihat semua @endif
@foreach ($judgments as $judgment)
{!! $judgment->typeFlatButton !!}
{!! Str::highlightPhrase($judgment->title, $term) !!}
{!! Str::highlightPhrase($judgment->category->name, $term) !!}
@endforeach @endif @if (count($laws) == 0 AND count($monographs) == 0 AND count($articles) == 0 AND count($judgments) == 0)
Data tidak ditemukan...
@endif