table.blade.php 663 B

12345678910111213141516171819202122232425
  1. <table {!! $attributes !!}>
  2. <thead>
  3. <tr>
  4. @foreach($headers as $header)
  5. <th>{{ $header }}</th>
  6. @endforeach
  7. </tr>
  8. </thead>
  9. <tbody>
  10. @foreach($rows as $row)
  11. <tr>
  12. @foreach($row as $item)
  13. <td>{!! $item !!}</td>
  14. @endforeach
  15. </tr>
  16. @endforeach
  17. @if (empty($rows))
  18. <tr>
  19. <td colspan="{!! count($headers) !!}">
  20. <div style="margin:5px 0 0 10px;"><span class="help-block" style="margin-bottom:0"><i class="feather icon-alert-circle"></i>&nbsp;{{ trans('admin.no_data') }}</span></div>
  21. </td>
  22. </tr>
  23. @endif
  24. </tbody>
  25. </table>