Files
web-site/Projects/Panel/Views/adminLte/Page/main.wizard.php
T
2026-07-01 16:44:17 +03:00

35 lines
1.3 KiB
PHP
Raw 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="page/new"><button class="btn btn-primary"><i class="fas fa-plus-square"></i> New Page Content</button></a>
<h1>Page Management</h1>
<div class="widget-box">
<div class="widget-title"> <span class="icon"> <i class="fa fa-bars"></i> </span>
<h5>Sayfa Listesi</h5>
</div>
<div class="widget-content nopadding">
<table class="table table-bordered table-striped data-table">
<thead>
<tr>
<th width="100">Create Date</th>
<th>Title</th>
<th>Language</th>
<th>Status</th>
<th width="70">İşlemler</th>
</tr>
</thead>
<tbody>
@foreach (pageList() as $key)
<tr class="odd gradeX">
<td>{{tcevir($key->create_date); }}</td>
<td><a href="page/edit/{{$key->id; }} "><i class="fa fa-edit"></i> {{$key->title; }}</a></td>
<td>{{$key->lang}}</td>
<td >{{status($key->status) }}</td>
<td style="text-align:center;">
<a href="page/delete/{{$key->id; }} " onclick="return confirm('Bu kaydı silmek istediğinize eminmisiniz?')"><button><i class="fa fa-trash"></i></button></a></td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>