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