@php $all_slots = $lead->time_slots; $appointments = []; foreach($all_slots as $row){ if($row->type == array_flip(config('enum.time_slot_types'))['worklog']) continue; $appointments[] = $row; } @endphp @if(!empty($appointments))
Our records show you have been installed.
@elseif(!empty($available_slots) && config('enum.install_states')[$lead->install_state] == 'available' || config('enum.install_states')[$lead->install_state] == 'dry_available') @if(empty($lead->commit_state) && $active_page == 'survey')You cannot book your survey / install before committing to a package. Please click here to continue.
@elsePlease note: Your first appointment may not mean you'll be live on that date. We will conduct a survey to discuss how we will connect your property to our full fibre network. If possible, and you are in agreement, we will do our best to complete the install on the same day.
@endifPlease select a time slot for your appointment where somebody will be home. Note that the install involves drilling a small hole into your property for the fibre cable. If no time slots suit then you can leave unselected and we will get in touch with you to arrange a suitable time.
Our records show you have not yet been installed by one of our engineers.
@if(!empty($lead->getInstallBooking()))Your install is booked for {!! $lead->getInstallBooking()->getWhenLine() !!}
{!! Form::open(['route' => 'cancel_booking', 'method' => 'post']) !!} {!! Form::token() !!} {{ Form::hidden('id', $lead->getInstallBooking()->id) }} {{ Form::hidden('notify_lead_email', true) }} {{ Form::hidden('notify_staff_email', true) }}Your pre/dry install is booked for {!! $lead->getDryInstallBooking()->getWhenLine() !!}
{!! Form::open(['route' => 'cancel_booking', 'method' => 'post']) !!} {!! Form::token() !!} {{ Form::hidden('id', $lead->getDryInstallBooking()->id) }} {{ Form::hidden('notify_lead_email', true) }} {{ Form::hidden('notify_staff_email', true) }}We will contact you to arrange for an engineer to come to your property and carry out your install at a time that is convenient for you.
@endifFeel free to contact us regarding your install arrangements. You can find our contact information by clicking here.
@endif