new pisilinux web sites
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
|
||||
<div class="col-12 col-md-12">
|
||||
<div class="card flex-fill">
|
||||
<div class="card-header">
|
||||
<h5 class="card-title mb-0">Yazılarım</h5>
|
||||
</div>
|
||||
<table class="table table-hover my-0">
|
||||
<thead class="table-dark" >
|
||||
<tr >
|
||||
<th>Tarih</th>
|
||||
<th>Başlık</th>
|
||||
<th>Kategori</th>
|
||||
<th>Durum</th>
|
||||
<th>İşlemler</th>
|
||||
</tr>
|
||||
</thead>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (user_content_list(session::select('userid')) as $key)
|
||||
<tr>
|
||||
|
||||
<td>{{tcevir($key->create_date)}}</td>
|
||||
<td><a href="/members/content/edit/{{$key->id}}"><i class="align-middle" data-feather="edit"></i> {{$key->title}}</a></td>
|
||||
<td>{{category_name($key->category_id)}}</td>
|
||||
<td>{{contentStatusAdmin($key->status)}}</td>
|
||||
<td>
|
||||
|
||||
<button class=" btn btn-danger" id="delete" data-id="{{$key->id}}" alt="Sil"><i class="align-middle" data-feather="trash"></i></button></a>
|
||||
</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user