sign_table.blade.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport"
  6. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <title>考生考场座位贴</title>
  9. <style>
  10. .room{
  11. width: 100%;
  12. }
  13. .room h2{
  14. text-align: center;
  15. }
  16. .room .list .item{
  17. width: 200px;
  18. text-align: center;
  19. line-height: 40px;
  20. font-weight: bold;
  21. font-size: 20px;
  22. float: left;
  23. }
  24. .room .list .item .avatar{
  25. width: 180px;
  26. height: 253px;
  27. }
  28. .room .list .item .text{
  29. font-weight: normal;
  30. }
  31. </style>
  32. </head>
  33. <body>
  34. @foreach($data as $k=>$v)
  35. <div class="room clearfix">
  36. <h2>
  37. 考生进出考场签到表
  38. </h2>
  39. <div class="list">
  40. @foreach($v as $key => $val)
  41. <div class="item">
  42. <div class="avatar">
  43. <img src="{{$val['avatar']}}" width="170" />
  44. {{-- <img src="/storage/2020-11-16-09-12-57.jpg" width="180" />--}}
  45. </div>
  46. <div class="info">
  47. {{$val['seat']}}&nbsp;&nbsp;{{$val['realname']}}
  48. </div>
  49. <div class="text">
  50. 进场:__________
  51. </div>
  52. <div class="text">
  53. 离场:__________
  54. </div>
  55. </div>
  56. @endforeach
  57. </div>
  58. </div>
  59. @endforeach
  60. </body>
  61. </html>