new pisilinux web sites

This commit is contained in:
Erkan IŞIK
2026-07-01 16:44:17 +03:00
commit b58488b586
21740 changed files with 2066209 additions and 0 deletions
@@ -0,0 +1,39 @@
<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>