join_name.blade.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. <h3 class="card-title">{{ __('auto.关联姓名:') }}{{$name ?? ""}}</h3>
  26. <table class="table table-bordered">
  27. <thead>
  28. <tr>
  29. <th width="6%">{{ __('auto.会员') }}ID</th>
  30. <th width="6%">{{ __('auto.姓名') }}</th>
  31. <th width="6%">{{ __('auto.渠道名称') }}</th>
  32. <th width="6%">{{ __('auto.注册日期') }}</th>
  33. </tr>
  34. </thead>
  35. <tbody>
  36. @foreach( $list as $k=>$v)
  37. <tr>
  38. <td>{{$v->UserID}}</td>
  39. <td>{{$v->Compellation}}</td>
  40. <td>{{$v->Accounts}}</td>
  41. <td>{{$v->RegisterDate}}</td>
  42. </tr>
  43. @endforeach
  44. </tbody>
  45. </table>
  46. <div class="box-footer clearfix">
  47. {{ __('auto.总共') }} <b>{{ $list->appends([
  48. 'id'=>$id,
  49. 'name'=>$name ?? ""
  50. ])->total() }}</b> {{ __('auto.条,分为') }}<b>{{ $list->lastPage() }}</b>{{ __('auto.页') }}
  51. {!! $list->links() !!}
  52. </div>
  53. </div>
  54. </div>
  55. </div>
  56. </div>
  57. </div>
  58. @endsection