@if($location)
{{ $locations->firstWhere('id', $location)?->name ?? 'Any location' }}
@else
Any location
@endif
@if($type)
{{ $rentalTypes->firstWhere('id', $type)?->name ?? 'Any type' }}
@else
Any type
@endif
@if($check_in && $check_out)
{{ \Carbon\Carbon::parse($check_in)->format('M d') }} - {{ \Carbon\Carbon::parse($check_out)->format('M d') }}
@else
Any dates
@endif
@if($guests)
{{ $guests }} guest{{ $guests > 1 ? 's' : '' }}
@endif