Skip to content

Commit

Permalink
maybe node id will show
Browse files Browse the repository at this point in the history
  • Loading branch information
kokofixcomputers authored Oct 26, 2024
1 parent 7811fb6 commit 3133515
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions resources/views/admin/nodes/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@
<th class="text-center">Servers</th>
<th class="text-center">SSL</th>
<th class="text-center">Public</th>
<th class="text-center">ID</th>
<th class="text-center">UUID</th>
</tr>
@foreach ($nodes as $node)
<tr>
Expand All @@ -58,6 +60,8 @@
<td class="text-center">{{ $node->servers_count }}</td>
<td class="text-center" style="color:{{ ($node->scheme === 'https') ? '#50af51' : '#d9534f' }}"><i class="fa fa-{{ ($node->scheme === 'https') ? 'lock' : 'unlock' }}"></i></td>
<td class="text-center"><i class="fa fa-{{ ($node->public) ? 'eye' : 'eye-slash' }}"></i></td>
<td class="text-center">{{ $node->id }}</td>
<td class="text-center">{{ $node->uuid }}</td>
</tr>
@endforeach
</tbody>
Expand Down

0 comments on commit 3133515

Please sign in to comment.