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,37 @@
<a href="/panel/language/new"><button class="btn btn-primary">New Language</button></a>
<h1>Language Management</h1>
<div class="widget-box">
<div class="widget-title"><i class="icon-expand"></i>
<h5>Language List</h5>
</div>
<div class="widget-content nopadding">
<table class="table table-bordered table-striped data-table">
<thead>
<tr>
<th width="90">ID</th>
<th>Language</th>
<th>slug</th>
<th>seo</th>
<th>flag</th>
<th>Operation</th>
</tr>
</thead>
<tbody>
@foreach ($list as $key)
<tr class="odd gradeX">
<td>{{$key->id}}</td>
<td><a href="/panel/language/edit/{{$key->id}}"><i class="fa fa-edit"></i>{{$key->language}} </a></td>
<td>{{$key->slug}} </td>
<td>{{$key->seo}} </td>
<td><img src="{{$key->flag}}" alt="" width="50"></td>
<td>
<a href="/panel/content/delete/{{$key->id}}" onclick="return confirm('Bu kaydı silmek istediğinize eminmisiniz?')"><button class="btn-danger"><i class="fa fa-trash"></i></button></a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>