Skip to content
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Rosenborg committed May 12, 2020
2 parents 9546489 + 8f13d1f commit b0c1da9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Component/Table/table.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@

<tbody class="{{$baseClass}}__body">
@foreach($list as $row)
<tr class="{{$baseClass}}__line {{$baseClass}}__line-{{ $loop->index }}">
@foreach($row as $column)
<tr class="{{$baseClass}}__line {{$baseClass}}__line-{{ $loop->index }}" @if(isset($row['href'])) js-row-href={{$row['href']}} @endif>
@foreach($row['columns'] as $column)
<td scope="row" class="{{$baseClass}}__column {{$baseClass}}__column-{{ $loop->index }}">{{ $column }}</td>
@endforeach
</tr>
Expand Down

0 comments on commit b0c1da9

Please sign in to comment.