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

32 lines
1.2 KiB
PHP

<div class="card">
<div class="card-header bg-primary d-flex justify-content-between align-items-center">
<h5 class="card-title text-white mb-0">Blog Kategorileri</h5>
<a href="/panel/category/new"><button class="btn btn-light">Yeni Kategori</button></a>
</div>
<div class="card-body p-0">
<table class="table table-striped">
<thead class="table-dark text-center">
<tr>
<th>Kategori</th>
<th>Açıklama</th>
<th width="60">Dil</th>
<th width="120">İşlemler</th>
</tr>
</thead>
<tbody>
@foreach (contentCategory() as $key)
<tr>
<td>{{$key->name}}</td>
<td>{{$key->description}}</td>
<td class="text-center">{{$key->lang}}</td>
<td class="text-center">
<a href="/panel/category/edit/{{$key->id}}" class="btn btn-primary btn-sm"><i class="fas fa-edit"></i></a>
<a href="/panel/category/delete/{{$key->id}}" class="btn btn-danger btn-sm"><i class="fas fa-trash"></i></a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>