| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport"
- content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title>考生考场座位贴</title>
- <style>
- .room{
- width: 100%;
- }
- .room h2{
- text-align: center;
- }
- .room .list .item{
- width: 200px;
- text-align: center;
- line-height: 40px;
- font-weight: bold;
- font-size: 20px;
- float: left;
- }
- .room .list .item .avatar{
- width: 180px;
- height: 253px;
- }
- .room .list .item .text{
- font-weight: normal;
- }
- </style>
- </head>
- <body>
- @foreach($data as $k=>$v)
- <div class="room clearfix">
- <h2>
- 考生进出考场签到表
- </h2>
- <div class="list">
- @foreach($v as $key => $val)
- <div class="item">
- <div class="avatar">
- <img src="{{$val['avatar']}}" width="170" />
- {{-- <img src="/storage/2020-11-16-09-12-57.jpg" width="180" />--}}
- </div>
- <div class="info">
- {{$val['seat']}} {{$val['realname']}}
- </div>
- <div class="text">
- 进场:__________
- </div>
- <div class="text">
- 离场:__________
- </div>
- </div>
- @endforeach
- </div>
- </div>
- @endforeach
- </body>
- </html>
|