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,48 @@
<a href="{{URL::base('panel/duyuru/new')}}"><button class="btn btn-primary">Yeni Duyuru</button></a>
<style>
.status{
padding: 3px;
cursor: pointer;
}
</style>
<div class="widget-box">
<div class="widget-title"> <span class="icon"> <i class="fa fa-bars"></i> </span>
<h5>Duyuru List</h5>
</div>
<div class="widget-content nopadding" >
<table class="table table-bordered data-table">
<thead>
<tr>
<th width="100">Create Date</th>
<th>Title</th>
<th>Text</th>
<th>Lang</th>
<th>Status</th>
<th>Operation</th>
</tr>
</thead>
<tbody>
@foreach ($list as $key)
<tr >
<td>{{tarih($key->createDate,'-')}}</td>
<td><a href="{{URL::base('panel/duyuru/edit/'.$key->id)}}"><i class="fa fa-edit"></i> {{$key->title}}</a></td>
<td>{{$key->text}}</td>
<td>{{$key->lang}}</td>
<td><p class="status" data-id='{{$key->id}}' data-status='{{$key->status}}' title="durumu değiştirmek için tıklayın">{{status1($key->status)}}</p></td>
<td>
<a href="{{URL::base('panel/download/delete/'.$key->id)}}" onclick="return confirm('Bu kaydı silmek istediğinize eminmisiniz?')">
<button class="btn btn-danger"><i class="fa fa-trash"></i></button>
</a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>