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

43 lines
1.5 KiB
PHP

<style>
.thead-dark{
background:#000;
color:#fff;
}
</style>
<div class="col-lg-12">
<div class="panel panel-default">
<div class="panel-heading">{{ lang('message','messages') }}</div>
<div class="panel-body">
<div class="row">
<div class="table-responsive">
<table class="table table-bordered ">
<thead class="thead-dark">
<tr>
<th >ID</th>
<th >{{ lang('message','createDate') }}</th>
<th>{{ lang('message','title') }}</th>
<th >{{ lang('message','status') }}</th>
<th >İşlem</th>
</tr>
</thead>
<tbody>
@foreach (messageList(USERID) as $key )
<tr>
<td>{{ $key->id }}</td>
<td>{{ tcevir($key->createDate,1) }}</td>
<td> <a href="/members/messages/content/{{ $key->id }}"> {{ $key->title }}</a></td>
<td>{{ messageStatus($key->status) }}</td>
<th><a href="/members/messages/delete/{{$key->id}}"><button class="btn btn-primary"><i class="glyphicon glyphicon-remove"></i></button></a></th>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>