@extends('layouts.app') @section('title', 'Pontos Turísticos - ApiEco') @section('content')

Pontos Turísticos

Descubra os melhores pontos turísticos de Salvador e arredores.

Limpar
@if($pontos->isEmpty())

Nenhum ponto turístico encontrado.

@else
@foreach($pontos as $ponto)
@if($ponto->imagens->isNotEmpty()) {{ $ponto->nome }} @else {{ $ponto->tipo?->icone ?? '📍' }} @endif

{{ $ponto->nome }}

{{ ucfirst($ponto->status) }}
@if($ponto->tipo) {{ $ponto->tipo->icone }} {{ $ponto->tipo->nome }} @endif

{{ Str::limit($ponto->descricao, 80) }}

📍 {{ $ponto->endereco }}
{{ $ponto->cidade }}/{{ $ponto->estado }}
@endforeach
{{ $pontos->withQueryString()->links() }}
@endif @endsection