venues and about pages on mobile

This commit is contained in:
merdan 2020-04-06 13:01:57 +05:00
parent 52b0779805
commit f8aaa36735
2 changed files with 4 additions and 4 deletions

View File

@ -56,7 +56,7 @@
}
});
function initMap() {
var uluru = {lat: {{$venue->address['latlng']['lat']}}, lng: {{$venue->address['latlng']['lng']}}};
var uluru = {lat: {{$current->address['latlng']['lat']}}, lng: {{$current->address['latlng']['lng']}}};
var map = new google.maps.Map(document.getElementById('map'), {
center: uluru,
zoom: 15

View File

@ -21,13 +21,13 @@
</li>
@endforeach
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">@lang('ClientSide.concert_halls')
<a class="dropdown-toggle navbar-link" data-toggle="dropdown" href="#">@lang('ClientSide.concert_halls')
<span class="caret"></span></a>
<ul class="dropdown-menu">
@foreach(venues_list() as $id => $venue)
<li>
<a href="{{route('venues',['id'=>$id])}}">{{$venue}}</a></li>
<li class="nav-item">
<a class="navbar-link" href="{{route('venues',['id'=>$id])}}">{{$venue}}</a></li>
@endforeach
</ul>
</li>