@extends('layouts.app') @section('title', 'Taxi arrival demo | ArrivalFlow') @section('meta_description', 'Request a taxi, confirm the ride, and convert the arrival into a contextual local booking.') @section('content')
Thin slice · Laravel-first demo

Turn a taxi request into a booking in under two minutes.

This demo keeps the story brutally simple: request a taxi, confirm the arrival, surface 2–3 relevant offers, and close a booking with measurable tracking.

{{ $metrics['rides'] }}Taxi requests
{{ $metrics['views'] }}Recommendation views
{{ $metrics['bookings'] }}Bookings completed
1 · Request taxi

Request a ride

Use realistic destination context so the recommendation engine has something to work with.

@if ($errors->any())
Please fix the form:
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
Demo inventory

Seeded offers

These are the kinds of offers the ride confirmation step can surface.

@foreach ($featuredOffers as $offer)
{{ ucfirst($offer->category) }} @if($offer->price_from) From €{{ number_format((float) $offer->price_from, 0) }} @endif @if($offer->duration_minutes) {{ $offer->duration_minutes }} min @endif

{{ $offer->title }}

{{ $offer->excerpt }}

@endforeach
@endsection