41 lines
1.5 KiB
PHP
41 lines
1.5 KiB
PHP
<div class="span12">
|
||
<div class="widget-box">
|
||
<div class="widget-title"> <span class="icon"> <i class="fa fa-bars"></i> </span>
|
||
<h5>Onay bekleyen Üyeler</h5>
|
||
</div>
|
||
<div class="widget-content nopadding">
|
||
|
||
<table class="table table-bordered data-table " id="example">
|
||
<thead class="table-dark">
|
||
<tr>
|
||
|
||
<th>#</th>
|
||
<th width="100">KAYIT TARİHİ</th>
|
||
|
||
<th>ÜYE ADI</th>
|
||
<th>MAİL ADRESİ</th>
|
||
<th>AKTİVİZASYON KODU <br>( Kodu tekrar göndermek için kodun üstüne tıklayın ) </th>
|
||
<th width="100">İŞLEMLER</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
@foreach ($pending_member as $key)
|
||
<tr>
|
||
<td>{{$key->user_id}}</td>
|
||
<td>{{tcevir($key->date)}}</td>
|
||
<td>{{$key->username}}</td>
|
||
<td>{{$key->mail}}</td>
|
||
<td>{{$key->aktivizasyon}}</td>
|
||
<td style="text-align: center">
|
||
<button class="activetionSend" data-id="{{$key->aktivizasyon}}"><i class="fa fa-check"></i></button>
|
||
<a href="/panel/user/mail/{{$key->user_id}} "><button><i class="fa fa-envelope"></i></button></a>
|
||
<a href="/panel/user/edit/{{$key->user_id}} "><button><i class="fa fa-edit"></i></button></a>
|
||
</td>
|
||
</tr>
|
||
@endforeach
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
|
||
</div> |