You can add following code into the header Partials.
@php
$openingTime = make_carbon($locationCurrentSchedule->getOpenTime());
@endphp
<div class=“no-spacing”>
@if ($locationCurrentSchedule->isOpen())
@lang(‘igniter.local::default.text_is_opened’)
@elseif ($locationCurrentSchedule->isOpening())
{!! sprintf(lang(‘igniter.local::default.text_opening_time’), $openingTime->isoFormat($openingTimeFormat)) !!}
@else
@lang(‘igniter.local::default.text_closed’)
@endif
</div>