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

48 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">
<div class="col-lg-12">
<br>
<a href="/bugs/new" class="btn btn-primary mb-6">
<i class="fe fe-folder-plus mr-2"></i>Yeni Kayıt Ekle
</a>
</div>
<!-- sol taraf -->
<div class="col-lg-12">
<div class="card">
<div class="card-status bg-success"></div>
<div class="card-header">
<h3 class="card-title">Son Kayıtları</h3>
</div>
<div class="table-responsive">
<table class="table card-table table-striped table-vcenter">
<thead>
<tr>
<th>#</th>
<th>Başlık</th>
<th>Açıklama</th>
<th>Ekleyen</th>
<th width="100">Görev Türü</th>
</tr>
</thead>
<tbody>
@foreach (bugs() as $key)
<tr>
<td class="w-1">{{$key->id}}</td>
<td><a href="/bugs/detail/{{$key->id}}/{{$key->titleSeo}}">{{$key->title}}</a></td>
<td class="text-nowrap">{{kelimebol($key->details,18)}}</td>
<td>{{username($key->userid)}}</td>
<td class="text-nowrap">{{taskTypeName($key->tasktype)}}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>