Files
web-site/Projects/Panel/Views/default/User/pending_member.wizard.php
T
2026-07-01 16:44:17 +03:00

41 lines
1.5 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.
<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>