Skip to content
This repository was archived by the owner on Jan 3, 2023. It is now read-only.

Commit e7bb09d

Browse files
committed
colspan
1 parent aa41388 commit e7bb09d

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

src/resources/views/admin/bulma/menus/index.blade.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
<th>@lang('SimpleMenu::messages.ops')</th>
1515
</tr>
1616
</thead>
17-
1817
<tbody>
1918
@if (count($menus) > 0)
2019
@foreach ($menus as $menu)
@@ -34,7 +33,7 @@
3433
@endforeach
3534
@else
3635
<tr>
37-
<td colspan="3">@lang('SimpleMenu::messages.app_no_entries_in_table')</td>
36+
<td colspan="2">@lang('SimpleMenu::messages.app_no_entries_in_table')</td>
3837
</tr>
3938
@endif
4039
</tbody>

src/resources/views/admin/bulma/pages/index.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
@endforeach
5757
@else
5858
<tr>
59-
<td colspan="9">@lang('SimpleMenu::messages.app_no_entries_in_table')</td>
59+
<td colspan="6">@lang('SimpleMenu::messages.app_no_entries_in_table')</td>
6060
</tr>
6161
@endif
6262
</tbody>

src/resources/views/admin/bulma/permissions/index.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<tbody>
1919
@if (count($permissions) > 0)
2020
@foreach ($permissions as $permission)
21-
<tr data-entry-id="{{ $permission->id }}">
21+
<tr>
2222
<td>{{ $permission->name }}</td>
2323
<td>
2424
<a href="{{ route('admin.permissions.edit',[$permission->id]) }}" class="button is-info is-inline-block">
@@ -34,7 +34,7 @@
3434
@endforeach
3535
@else
3636
<tr>
37-
<td colspan="3">@lang('SimpleMenu::messages.app_no_entries_in_table')</td>
37+
<td colspan="2">@lang('SimpleMenu::messages.app_no_entries_in_table')</td>
3838
</tr>
3939
@endif
4040
</tbody>

src/resources/views/admin/bulma/roles/index.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
@endforeach
3939
@else
4040
<tr>
41-
<td colspan="6">@lang('SimpleMenu::messages.app_no_entries_in_table')</td>
41+
<td colspan="3">@lang('SimpleMenu::messages.app_no_entries_in_table')</td>
4242
</tr>
4343
@endif
4444
</tbody>

src/resources/views/admin/bulma/users/index.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
@endforeach
4747
@else
4848
<tr>
49-
<td colspan="9">@lang('SimpleMenu::messages.app_no_entries_in_table')</td>
49+
<td colspan="5">@lang('SimpleMenu::messages.app_no_entries_in_table')</td>
5050
</tr>
5151
@endif
5252
</tbody>

0 commit comments

Comments
 (0)