sub_table.blade.php 242 B

123456789
  1. @foreach($grid->rows() as $row)
  2. <tr {!! $row->getRowAttributes() !!}>
  3. @foreach($grid->columnNames as $name)
  4. <td {!! $row->getColumnAttributes($name) !!}>
  5. {!! $row->column($name) !!}
  6. </td>
  7. @endforeach
  8. </tr>
  9. @endforeach