diff --git a/resources/views/livewire/book-case/comment-book-case.blade.php b/resources/views/livewire/book-case/comment-book-case.blade.php index 20ab3c72..7e8e6a62 100644 --- a/resources/views/livewire/book-case/comment-book-case.blade.php +++ b/resources/views/livewire/book-case/comment-book-case.blade.php @@ -148,7 +148,7 @@ #{{ $loop->iteration }} Bild - @if(auth()->user()->hasRole('super-admin')) + @if(auth()->user()->hasRole('super-admin') || app()->environment('local')) @@ -186,19 +186,19 @@
@map([ - 'lat' => $bookCase->latitude, - 'lng' => $bookCase->longitude, - 'zoom' => 24, - 'markers' => [ - [ - 'title' => $bookCase->title, - 'lat' => $bookCase->latitude, - 'lng' => $bookCase->longitude, - 'url' => 'https://gonoware.com', - 'icon' => asset('img/btc-logo-6219386_1280.png'), - 'icon_size' => [42, 42], - ], - ], + 'lat' => $bookCase->latitude, + 'lng' => $bookCase->longitude, + 'zoom' => 24, + 'markers' => [ + [ + 'title' => $bookCase->title, + 'lat' => $bookCase->latitude, + 'lng' => $bookCase->longitude, + 'url' => 'https://gonoware.com', + 'icon' => asset('img/btc-logo-6219386_1280.png'), + 'icon_size' => [42, 42], + ], + ], ])