<?php use lib\helpers\Forms; use lib\helpers\Pagination; use widgets\MainAdminMenu; use widgets\MainMenu; echo MainMenu::run(['user' => $user]); echo MainAdminMenu::run(); ?> <h1>Пользователи</h1> <table class="table table-hover"> <tr> <th> # </th> <th>Имя</th> <th>Фамилия</th> <th>vk id</th> <th>Дата регистрации</th> <th>Статус</th> <th></th> </tr> <?php $i = 1; foreach ($allUser as $us) { ?> <tr> <td><?php echo $i; ?> </td>
<?php use widgets\MainMenu; echo MainMenu::run(); if ($msg != '') { ?> <h3 class="msg-success"><?php echo $msg; ?> </h3> <?php } ?> <div class="my-service-box"> <a href="/vk2/profile/add_service/" class="btn btn-success">Добавить услугу</a> <div class="my-services-box-all"> <table class="table table-bordered"> <caption>Мои услуги</caption> <tr> <th>Услуга</th> <th>Тип услуги</th> <th>Цена</th> <th width="50px">Действия</th> </tr> <?php foreach ($sub as $s) { ?> <tr> <td><?php echo $s['title']; ?>