join_facility.blade.php 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. @extends('base.base')
  2. @section('base')
  3. <!-- 内容区域 -->
  4. <div class="main-panel">
  5. <div class="content-wrapper">
  6. <div class="page-header">
  7. <h3 class="page-title">
  8. <span class="page-title-icon bg-gradient-primary text-white mr-2">
  9. <i class="mdi mdi-settings"></i>
  10. </span>
  11. {{ __('auto.关联设备') }}
  12. </h3>
  13. <nav aria-label="breadcrumb">
  14. <ol class="breadcrumb">
  15. <li class="breadcrumb-item"><a href="#">{{ __('auto.关联设备') }}</a></li>
  16. <li class="breadcrumb-item active" aria-current="page">{{ __('auto.关联设备') }}</li>
  17. </ol>
  18. </nav>
  19. </div>
  20. <div class="row">
  21. <div class="col-lg-12 grid-margin stretch-card">
  22. <div class="card">
  23. <div class="card-body">
  24. <a href="javascript:history.back(-1)">{{ __('auto.返回上一页') }}</a>
  25. <br>
  26. <h4 class="card-title">{{ __('auto.设备码:') }}{{$mac}}</h4>
  27. <h3 class="card-title">{{ __('auto.关联设备,设备码') }}</h3>
  28. <table class="table table-bordered">
  29. <thead>
  30. <tr>
  31. <th width="6%">{{ __('auto.会员') }}ID</th>
  32. <th width="6%">{{ __('auto.昵称') }}</th>
  33. <th width="6%">{{ __('auto.渠道') }}</th>
  34. <th width="6%">{{ __('auto.注册日期') }}</th>
  35. <th width="6%">{{ __('auto.用设备登陆次数') }}
  36. </th>
  37. </tr>
  38. </thead>
  39. <tbody>
  40. @foreach($list as $item)
  41. <tr>
  42. <td>
  43. <a href="/admin/global/id_find?UserID={{$item->UserID}}">
  44. {{$item->GameID}}
  45. </a>
  46. </td>
  47. <td>{{$item->NickName}}</td>
  48. <td>{{$item->Channel}}</td>
  49. <td>{{date('Y-m-d H:i:s',strtotime($item->RegisterDate))}}</td>
  50. <td>{{$item->login_count}}</td>
  51. </tr>
  52. @endforeach
  53. </tbody>
  54. </table>
  55. <div class="box-footer clearfix" id = "pages">
  56. {{ __('auto.总共') }} <b>{{ $list->appends([
  57. 'list'=>$list,
  58. 'id'=>$id,
  59. 'RegisterMobile'=>$RegisterMobile ?? ""
  60. ])->total() }}</b> {{ __('auto.条,分为') }}<b>{{ $list->lastPage() }}</b>{{ __('auto.页') }}
  61. {!! $list->links() !!}
  62. </div>
  63. </div>
  64. </div>
  65. </div>
  66. </div>
  67. </div>
  68. @endsection