@include('site/header') @php $array_meses = ['','Enero','Febrero','Marzo','Abril','Mayo','Junio','Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre']; @endphp
@if (count($imagenes_flyers) > 0)
@foreach ($imagenes_flyers as $index => $image_flyer)
@endforeach
@endif

Nuestros Circuitos

@if ($busqueda)
{{($dataBusqueda['tipo_viaje'] == "all") ? 'Todos los Destinos' : 'Destino '.$dataBusqueda['tipo_viaje']}} Desde {{$dataBusqueda['fecha_desde']}} Hasta {{$dataBusqueda['fecha_hasta']}}
Borrar Filtros
@else
  • todos({{count($viajes)}})
  • @foreach ($viajesPorCategoria as $categoria => $cantidad)
  • {{$categoria}}({{$cantidad}})
  • @endforeach
@endif
@foreach ($viajes as $viaje)
{{--

{{ $viaje->destino->ciudad }}

$ 9.600

circuito regional
salida 3 de dic. de 2023
--}}
imagen_portada)) { $imagePath = isset($viaje->imagen_portada) ? $viaje->imagen_portada : '/images/no-image.webp'; $imageUrl = file_exists(public_path($imagePath)) ? env('APP_URL') . $imagePath : env('APP_URL') . '/images/no-image.webp'; } else { $imagePath = isset($viaje->destino->image->first()->path) ? $viaje->destino->image->first()->path : '/images/no-image.webp'; $imageUrl = file_exists(public_path($imagePath)) ? env('APP_URL') . $imagePath : env('APP_URL') . '/images/no-image.webp'; } @endphp style="background-image:url({{ $imageUrl }});" > {{--

{{ (isset($viaje->precio)) ? '$'.number_format($viaje->precio, 0, ',', '.') : '' }}

--}}

Desde {{ (isset($viaje->precio)) ? '$'.number_format($viaje->precio, 0, ',', '.') : '' }}

@if ($viaje->estado == 4)

Completo

@endif

{{ $viaje->destino->ciudad ?? '' }}

{{ substr(($array_meses[(int)(date('m', strtotime($viaje->fecha_hora_salida)))]), 0, 3) }} {{ date('d', strtotime($viaje->fecha_hora_salida)) }} @if ($viaje->noches > 0) ยท {{ $viaje->noches }} Noches @endif

@endforeach
@include('site/footer') {{-- --}}