Files
2026-07-01 16:44:17 +03:00

37 lines
1.2 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<div class="container">
<h2>ARAMA SONUÇLARI</h2>
<hr>
<!-- FORUM arama bloğu -->
<div class="card">
<div class="card-status bg-green"></div>
<div class="card-header">
<h3 class="card-title">Açtığı konular</h3>
<div class="card-options">
<a href="#" class="card-options-collapse" data-toggle="card-collapse"><i class="fe fe-chevron-up"></i></a>
<a href="#" class="card-options-remove" data-toggle="card-remove"><i class="fe fe-x"></i></a>
</div>
</div>
<div class="card-body">
@if ($konulistesi)
@foreach ($konulistesi as $key )
@if($key->content_id == '0')
{[$id = $key->id]}
@else
{[$id = $key->content_id]}
@endif
<a href="/forum/subject/{[ echo $id.'-'.$key->title_seo ]}" target="_blank">
{{$key->title}}( {{kelimebol($key->content,50)}} )</a><hr>
@endforeach
@else
<h4>Aradığınız kriterlere uygun sonuç bulunamadı!</h4>
@endif
</div>
</div>
<!-- FORUM arama bloğu -->
</div>