Skip to content

Commit

Permalink
no need of an array
Browse files Browse the repository at this point in the history
  • Loading branch information
sdebacker committed Nov 6, 2018
1 parent 8c317ff commit 7234514
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resources/views/public/_list-item.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@if ($place->latitude && $place->longitude)
<a class="places-item-btn-map" href="" title="{{ __('db.Show on map') }}"><i class="fa fa-map-marker"></i><span class="sr-only">{{ __('db.Show on map') }}</span></a>
@endif
<a class="places-item-link" href="{{ route($lang.'::place', array($place->slug)) }}" title="@lang('db.More')">
<a class="places-item-link" href="{{ route($lang.'::place', $place->slug) }}" title="@lang('db.More')">
{{ $place->title }}
</a>
</li>

0 comments on commit 7234514

Please sign in to comment.