@extends('layouts.app') @section('title', $offer->title . ' | ArrivalFlow') @section('meta_description', $offer->excerpt ?: 'Contextual offer detail with a simple booking form.') @section('content')
4 · Offer detail

{{ $offer->title }}

{{ $offer->description ?: $offer->excerpt }}

{{ ucfirst($offer->category) }} @if($offer->location_label){{ $offer->location_label }}@endif @if($offer->price_from)From €{{ number_format((float) $offer->price_from, 0) }}@endif @if($offer->duration_minutes){{ $offer->duration_minutes }} min@endif
@if($recommendation)
Recommendation context: This click is tied to ride #{{ $ride?->id }} and recommendation #{{ $recommendation->position }}.
@endif
@endsection