mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Show custom maps in device overview * remove extra line return * Sort by name
14 lines
508 B
PHP
14 lines
508 B
PHP
<div class="row">
|
|
<div class="col-md-12">
|
|
<x-panel class="device-overview panel-condensed">
|
|
<x-slot name="heading">
|
|
<i class="fa fa-map-marked fa-lg icon-theme" aria-hidden="true"></i>
|
|
<strong>{{ __('Custom Maps') }}</strong>
|
|
</x-slot>
|
|
@foreach($maps as $map)
|
|
<p><a href="{{ route('maps.custom.show', $map->custom_map_id) }}">{{ $map->name }}</a></p>
|
|
@endforeach
|
|
</x-panel>
|
|
</div>
|
|
</div>
|