@foreach($sejourEnCour as $key => $item)
@php
$client = $item->client;
$clientId = $client ? $client->id : null;
$firstName = $client ? $client->f_name : $item->guest_surname;
$lastName = $client ? $client->l_name : $item->guest_name;
$badgeColor = $item->paid === 'paid' ? 'bg-[#f2ffe6]' : 'bg-[#ff7575]';
$textColor = $item->paid === 'paid' ? 'text-[#666666]' : 'text-white';
@endphp