query.blade.php 2.6 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-wrench"></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. <h4 class="card-title">{{ __('auto.查询验证码') }}</h4>
  25. <form class="well form-inline margin-top-20" method="get" action='/admin/code/query'>
  26. <spen style="padding-left: 10px" >{{ __('auto.手机号:') }}</spen>
  27. <input class="form-control" type="number" name="PhoneNum" id="PhoneNum" style="width: 10%; " value="{{$PhoneNum}}" >
  28. <input type="submit" class="btn btn-sm btn-gradient-dark btn-icon-text" value="{{ __('auto.搜索') }}" />&nbsp;&nbsp;
  29. </form>
  30. <table class="table table-bordered">
  31. <thead>
  32. <tr>
  33. <th>{{ __('auto.手机号') }}</th>
  34. <th>{{ __('auto.验证码') }}</th>
  35. <th>{{ __('auto.绑定时间') }}</th>
  36. </tr>
  37. </thead>
  38. <tbody>
  39. <tr>
  40. <td>{{ $PhoneNum }}</td>
  41. <td>{{ $query->Code ?? '' }}</td>
  42. <td>{{ $BindDate }}</td>
  43. </tr>
  44. </tbody>
  45. </table>
  46. </div>
  47. </div>
  48. </div>
  49. </div>
  50. </div>
  51. </div>
  52. <script>
  53. </script>
  54. @endsection