@if(!$isCancel)
@foreach (['😥', '😟', '😐', '🙂', '😀'] as $index => $emoji) {{ $emoji }} @endforeach {{ $ratingLabel }}
@if ($errors->has('rating')) {{ $errors->first('rating') }} @endif {{-- --}}

Select Satisfaction Reason

Select Dissatisfaction Reason

Selected Reasons

@foreach($selectedReasons as $reason) @php $colorClass = in_array($reason, $satisfactionReasons) ? 'bg-green-200 text-black-700' : 'bg-red-200 text-black-700'; @endphp {{ $reason }} @endforeach
@endif @if($isCancel)

Select Cancelling Reason

Selected Reasons

@foreach($selectedReasons as $reason) @php $colorClass = in_array($reason, $cancelReasons) ? 'bg-green-200 text-black-700' : 'bg-red-200 text-black-700'; @endphp {{ $reason }} @endforeach
@endif
{{-- --}}
@if(!$isCancel) @else @endif