@props([
'status' => $reservation->lastExtension?->status()?->title ?? $reservation->status,
])
@if ($status == 'confirmed')
{{ __('general.confirmed') }}
@elseif ($status == 'canceled')
{{ __('general.canceled') }}
@elseif ($status == 'failed')
{{ __('general.failed') }}
@else
{{ __('general.finished') }}
@endif