resume.blade.php 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <table>
  2. <thead>
  3. <tr>
  4. <th>编号</th>
  5. <th>姓名</th>
  6. <th>简历名称</th>
  7. <th>公开设置</th>
  8. <th>简历完整度</th>
  9. <th>审核状态</th>
  10. <th>性别</th>
  11. <th>年龄</th>
  12. <th>现居地</th>
  13. <th>户籍</th>
  14. <th>婚姻状况</th>
  15. <th>工作经验</th>
  16. <th>期望岗位性质</th>
  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. <th>最后更新时间</th>
  27. </tr>
  28. </thead>
  29. <tbody>
  30. @foreach($data as $value)
  31. <tr>
  32. <td>{{ $value->id }}</td>
  33. <td>{{ $value->memberInfos->realname or '' }}</td>
  34. <td>{{ $value->title}}</td>
  35. <td>@if($value->display)公开@else保密@endif</td>
  36. <td>{{ $value->complete_percent }}%</td>
  37. <td>@if($value->audit==0)审核未通过@elseif($value->audit==2)审核通过@else等待审核@endif</td>
  38. <td>{{ $value->memberInfos->sex_cn or '' }}</td>
  39. <td>{{ date('Y')-$value->memberInfos->birthday }}</td>
  40. <td>{{ $value->memberInfos->residence_cn or '' }}</td>
  41. <td>{{ $value->memberInfos->householdaddress_cn or '' }}</td>
  42. <td>{{ $value->memberInfos->marriage_cn or '' }}</td>
  43. <td>{{ $value->memberInfos->experience_cn or '' }}</td>
  44. <td>{{ $value->nature_cn or '' }}</td>
  45. <td>{{ $value->intention_jobs or '' }}</td>
  46. <td>{{ $value->district_cn or '' }}</td>
  47. <td>{{ $value->wage_cn or '' }}</td>
  48. <td>{{ $value->memberInfos->education_cn or '' }}</td>
  49. <td>{{ $value->first_education->school or '' }}</td>
  50. <td>{{ $value->memberInfos->major_cn or '' }}</td>
  51. <td>{{ $value->memberInfos->phone or '' }}</td>
  52. <td>{{ $value->memberInfos->email or '' }}</td>
  53. <td>{{ $value->created_at or '' }}</td>
  54. <td>{{ $value->updated_at or '' }}</td>
  55. </tr>
  56. @endforeach
  57. </tbody>
  58. </table>