@livewire('customer-train-component', ['customer_id' => $customer->id ,'customer'=>$customer ,'component_name'=>"customer-surveys"])

{{ __('messages.Customer Survey') }} - {{$customer->name}}

course_id @foreach($customer->courses as $course) @endforeach
@forelse($customer_surveys as $customer_survey)

{{ __('messages.Course') }} : {{$customer_survey->course_customer->course->course_level->product->name}} - {{$customer_survey->course_customer->course->course_level->name}}

{{ __('messages.Survey') }} : {{$customer_survey->survey->name}}

@forelse($customer_survey->customer_survey_reviews as $key=> $customer_review)

{{++$key."."}} {{$customer_review->survey_content->question}} - ({{$customer_review->review}}/5)

@if($customer_review->comment)

{{__('messages.comment')}} : {{$customer_review->comment}}

@endif @empty

{{__('messages.The poll has not yet started')}}

@endforelse
@empty

{{__('messages.The poll has not yet started')}}

@endforelse