We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dcf0fd commit 2b18fd1Copy full SHA for 2b18fd1
src/resources/views/crud/inc/show_table.blade.php
@@ -3,12 +3,10 @@
3
<tbody>
4
@foreach($columns as $column)
5
<tr>
6
- @if(!empty($column['label']))
7
- <td @if($loop->index === 0) class="border-top-0" @endif>
8
- <strong>{!! $column['label'] !!}:</strong>
9
- </td>
10
- @endif
11
- <td colspan="{{ !empty($column['label']) ? 1 : 2 }}" @if($loop->index === 0) class="border-top-0" @endif>
+ <td @if($loop->index === 0) class="border-top-0" @endif>
+ <strong>{!! $column['label'] !!}@if(!empty($column['label'])):@endif</strong>
+ </td>
12
@php
13
// create a list of paths to column blade views
14
// including the configured view_namespaces
0 commit comments