{{ session('status') }}
@endif
@if ($errors->any())
Bitte prüfe deine Eingaben.
-
@foreach ($errors->all() as $error)
- {{ $error }} @endforeach
Neu
Trip anlegen
Übersicht
Reisen
@foreach($trips as $trip)
@include('trips.partials.trip-card', [
'trip' => $trip,
'travelModeLabels' => $travelModeLabels,
'statusLabels' => $statusLabels,
'budgetCategoryLabels' => $budgetCategoryLabels,
'smartSuggestions' => $smartSuggestionsByTrip[$trip->id] ?? [],
'coachPrompts' => $smartCoachPromptsByTrip[$trip->id] ?? [],
])
@endforeach