{{ $offer->origin_city ?? $offer->origin_iata ?? 'Origen' }} → {{ $offer->destination_city ?? $offer->destination_iata ?? 'Destino' }}
${{ number_format($offer->price ?? 0, 0, ',', '.') }} {{ $offer->currency ?? '' }}
@if(!empty($offer->airline))
Aerolínea: {{ $offer->airline }}
@endif
@if(!empty($offer->departure_date))
Salida: {{ \Carbon\Carbon::parse($offer->departure_date)->format('d-m-Y') }}
@endif
@if(!empty($offer->return_date))
Regreso: {{ \Carbon\Carbon::parse($offer->return_date)->format('d-m-Y') }}
@endif
@if(isset($offer->stops))
Escalas:
@if((int)$offer->stops === 0)
Directo
@elseif((int)$offer->stops === 1)
1 escala
@else
{{ $offer->stops }} escalas
@endif
@endif