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.
2 parents f90711b + 0c05227 commit 19092b3Copy full SHA for 19092b3
resources/views/layout.blade.php
@@ -13,11 +13,13 @@
13
<div class="box-body no-padding">
14
<ul class="nav nav-pills nav-stacked">
15
@foreach($connections as $name => $connection)
16
+ @if(!empty($connection['host']))
17
<li @if($name == $conn)class="active"@endif>
18
<a href=" {{ route('redis-index', ['conn' => $name]) }}">
19
<i class="fa fa-database"></i> {{ $name }} <small>[{{ $connection['host'].':'.$connection['port'] }}]</small>
20
</a>
21
</li>
22
+ @endif
23
@endforeach
24
</ul>
25
</div>
0 commit comments