jobfair_company_person.blade.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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>{{config('admin.title')}} | 参展人员 - {{subsite_config('aix.system.site.site.site_name')}}</title>
  9. <style>
  10. #person{ border-collapse:collapse;text-align: center;margin: 50px auto;width: 95%;font-size: 18px;line-height: 40px;}
  11. #person td,th{border: 1px solid #0d0d0d;}
  12. </style>
  13. </head>
  14. <body>
  15. <table id="person">
  16. <tr>
  17. <th>序号</th>
  18. <th>姓名</th>
  19. <th>性别</th>
  20. <th>电话</th>
  21. <th>职务</th>
  22. <th>身份证</th>
  23. <th>是否跟团</th>
  24. <th>房间选择</th>
  25. <th>备注</th>
  26. </tr>
  27. @foreach($reserve as $key=>$value)
  28. <tr>
  29. <td>{{++$key}}</td>
  30. <td>{{$value->name1}}</td>
  31. <td>{{$value->sex1 == 1 ? '男':'女'}}</td>
  32. <td>{{$value->phone1}}</td>
  33. <td>{{$value->departmental_position1}}</td>
  34. <td>{{$value->id1}}</td>
  35. <td>{{$value->gentuan == 1 ? '是' : '否'}}</td>
  36. <td>
  37. @switch($value->star)
  38. @case (1)
  39. 无(当天来回选此项)
  40. @break
  41. @case (2)
  42. 标间(由会务组统筹安排)
  43. @break
  44. @case (3)
  45. 单间
  46. @break
  47. @endswitch
  48. </td>
  49. <td>{{$value->intro}}</td>
  50. </tr>
  51. @endforeach
  52. </table>
  53. </body>
  54. </html>