@foreach($timeslots as $timeslot)
@php
if($this->selectedTimeSession===$timeslot){
$colSpan = 6;
}else{
$colSpan = 12;
}
@endphp
<{{ $this->buttonType }}
data-schedulerselectedtime="{{ $selectedTimeSession }}"
x-data wire:click="setSessionToSelectValue('{{ $timeslot }}')"
type="{{ $this->type }}"
data-timeslot="{{ $timeslot }}"
class="btn btn-primary {{ $this->class }}">
{!! $this->icon !!} {!! $timeslot !!}
{{ $this->buttonType }}>
<{{ $this->buttonType }}
type="{{ $this->type }}"
class="btn btn-primary {{ $this->class }}">
{!! $this->icon !!} Next
{{ $this->buttonType }}>
@endforeach