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

40 lines
1.5 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="d-flex justify-content-end flex-wrap">
<a href="/panel/sss/new" class="btn btn-primary me-2">+ Yeni Soru / Cevap</button></a>
</div>
<div class="card mt-3">
<div class="card-header bg-primary">
<h5 class="card-title text-white">Sık Sorulan Sorular</h5>
</div>
<div class="card-body p-0">
<table class="table table-striped table-hover">
<thead class="table-dark text-center">
<tr>
<th width="10">ID</th>
<th>Soru</th>
<th width="120">İşlemler</th>
</tr>
</thead>
<tbody>
@foreach ($liste as $key )
<tr>
<td>{{$key->id }}</td>
<td>{{$key->question }}</td>
<td class="text-center">
<a class="btn btn-success btn-sm" href="/panel/sss/edit/{{$key->id }}"><i class="fa fa-edit"></i></a>
<a class="btn btn-danger btn-sm" href="/panel/sss/delete/{{$key->id }}">
<i class="fa fa-trash"></i>
</a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>