list_user.blade.php 638 B

1234567891011121314151617181920212223242526
  1. @extends('admin.frame_list')
  2. @section('content_btn')
  3. <a href="{{ route('active', ['tid' => $activesUsers[0]->active->tid]) }}">返回</a>
  4. <a>主题:{{ $activesUsers[0]->active->theme->name }}</a>
  5. <a>活动:{{ $activesUsers[0]->active->name }}</a>
  6. @stop
  7. @section('table_data')
  8. <tr>
  9. <th>会员账号</th>
  10. <th>手机号码</th>
  11. <th>报名时间</th>
  12. </tr>
  13. @foreach ($activesUsers as $activesUser)
  14. <tr>
  15. <td>{{ $activesUser->user->name }}</td>
  16. <td>{{ $activesUser->user->mobile }}</td>
  17. <td>{{ $activesUser->created_at }}</td>
  18. </tr>
  19. @endforeach
  20. @stop
  21. @section('render_data')
  22. {{ $activesUsers->render() }}
  23. @stop