@extends('theme') @section("title", env('APP_NAME') . " - Ponto Turístico - " . $ponto->ponto) @section('content') @include('components._header', ["img" => env("APP_ASSET") . "/" . $ponto->foto, "title" => __($ponto->ponto)])

{{ __($ponto->subtitulo) }}

{!! __($ponto->descricao) !!}

@if(isset($ponto->arquivos) && $ponto->arquivos->count() > 0)

{{ __("Galeria de Fotos") }}

@php $url = env("APP_ASSET") . "/"; @endphp @foreach($ponto->arquivos as $arquivo)
{{ $ponto->ponto }}
@endforeach
@endif @if(!empty($ponto->latitude) && !empty($ponto->longitude))

{{ __("Localização") }}

@php $maps = "https://www.google.com/maps?q=" . $ponto->latitude . "," . $ponto->longitude; $waze = "https://www.waze.com/ul?ll=" . $ponto->latitude . "," . $ponto->longitude . "&navigate=yes&zoom=17"; @endphp

{{ __("Navegar até o ponto turístico") }}

Google Maps Waze
@endif
@endsection