@if (!$edit && count($user->journeys) == 0) @endif @if ($edit && count($user->journeys) == 0)
@endif @if (count($user->journeys) > 0)
@foreach ($user->journeys as $userJourney) @if ($edit)
@else
@endif
{{ $userJourney->title }} {{ $userJourney->getDateReadable() }} @if (!empty($userJourney->note))
"{!! nl2br(e($userJourney->note)) !!}"
@endif
@if ($userJourney->appointment && !$userJourney->done) {{ trans('Appointment reserved') }} @endif
@endforeach
@endif @if ($edit && $modalEditJourney)
@error('title')
{{ $message }}
@enderror
@error('date')
{{ $message }}
@enderror
@endif @if ($edit && $modalJourney)
@error('beginning')
{{ $message }}
@enderror
@endif