record.blade.php 689 B

12345678910111213141516171819202122232425
  1. <div style='max-height:500px;overflow:auto;min-width:850px;'>
  2. <table class="table table-hover" style="min-width:850px;">
  3. <tbody>
  4. @if (count($records) > 0)
  5. <tr>
  6. <td>原上线ID</td>
  7. <td>修改时间</td>
  8. </tr>
  9. @foreach($records as $row)
  10. <tr>
  11. <td>{{$row['parent_id']}}</td>
  12. <td>{{$row['created_at']}}</td>
  13. </tr>
  14. @endforeach
  15. @endif
  16. @if (count($records) <= 0)
  17. <tr>
  18. <td colspan='4' align='center'>未找到记录</td>
  19. </tr>
  20. @endif
  21. </tbody>
  22. </table>
  23. </div>