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

38 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 py-4">
<div class="d-flex justify-content-between align-items-center mb-4 flex-wrap gap-2">
<h4 class="mb-0">Arama Sonuçları</h4>
<a href="https://bugs.pisilinux.og/new" class="btn-modern btn-modern-primary" style="padding:8px 20px;font-size:0.85rem;">
<i class="fa fa-plus me-1"></i>Yeni Kayıt Ekle
</a>
</div>
<div class="glass-card p-0 overflow-hidden">
<div class="bugs-search-header">
<h5 class="mb-0">Son Kayıtlar</h5>
</div>
<div class="table-responsive">
<table class="bugs-table">
<thead>
<tr>
<th>#</th>
<th>Başlık</th>
<th>Açıklama</th>
<th>Ekleyen</th>
<th>Görev Türü</th>
</tr>
</thead>
<tbody>
@foreach (bugs() as $key)
<tr>
<td>{{$key->id}}</td>
<td><a href="https://bugs.pisilinux.og/detail/{{$key->id}}/{{$key->titleSeo}}">{{$key->title}}</a></td>
<td>{{kelimebol($key->details,18)}}</td>
<td>{{username($key->userid)}}</td>
<td>{{taskTypeName($key->tasktype)}}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>