Files
librenms-librenms/resources/views/device/overview/maps.blade.php
T
Tony MurrayandGitHub 1dc62454fc Show custom maps in device overview (#15985)
* Show custom maps in device overview

* remove extra line return

* Sort by name
2024-04-26 15:10:24 -05:00

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>