@foreach($arriveProchaines 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'; $heureArrive = $item->onlineCheckin ? $item->onlineCheckin->date_checkin : null; @endphp @endforeach