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

47 lines
1.8 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.
<a href="/panel/slayt/new"><button class="btn btn-primary">New Slayt</button></a>
<h1>Slayt Management</h1>
<div class="card">
<div class="card-header bg-primary">
<h5 class="card-title text-white">Slaytlar</h5>
</div>
<div class="card-body p-0">
<table class="table table-bordered data-table">
<thead class="table-dark text-center" >
<tr>
<th>BAŞLIK</th>
<th width="10">DURUM</th>
<th width="20" colspan="2">SIRALAMA</th>
<th width="120">İŞLEMLER</th>
</tr>
</thead>
<tbody>
@foreach ($slider_list as $key)
<tr>
<td>{{$key->baslik}} <img src="{{URL::base($edit->resim)}}" width="200"></td>
<td class="sliderStat" data-id="{{$key->id}}" data-status='{{$key->durum}}' style="text-align: center;">
{{status1($key->durum)}}
</td>
<td style="text-align: center">{{$key->sira}}</td>
<td width="30" style="text-align: center;">
@if ($key->sira > 1)
<a href="/panel/slayt/up/{{$key->id}}"><i class="fa fa-chevron-up up"></i></a>
@endif
@if ($sira_max > $key->sira)
<a href="/panel/slayt/down/{{$key->id}}"><i class="fa fa-chevron-down up"></i></a>
@endif
</td>
<td class="text-center" >
<a href="/panel/slayt/edit/{{$key->id}} " class="btn btn-primary btn-sm"><i class="fa fa-edit fa-lg"></i></a>
<a href="/panel/slayt/delete/{{$key->id}}" class="btn btn-danger btn-sm" onclick="return confirm('Bu kaydı silmek istediğinize eminmisiniz?')"><i class="fa fa-trash fa-lg"></i></a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>