@extends('admin.main') @section('content')
Surveys

1

Credit

Question name

Last Active

Retarget?

Status

@foreach ($surveys as $survey)
{{ $survey->question }}
@php $optionCount = 0; if ($survey->option_1) { $optionCount++; } if ($survey->option_2) { $optionCount++; } if ($survey->option_3) { $optionCount++; } if ($survey->option_4) { $optionCount++; } if ($survey->option_5) { $optionCount++; } if ($survey->option_6) { $optionCount++; } if ($survey->option_7) { $optionCount++; } if ($survey->option_8) { $optionCount++; } // Add more conditions for option3, option4, etc. if needed @endphp

Multiple choice: {{ $optionCount }}

Rejected

@endforeach

All surveys are only active for 28 Days.
A maximum of three questions can be retargeted at once. If all retargets are turned off, then your active surveys will rotate, depending on survey preference.

@foreach($surveys as $survey)
{{ $survey->question }}

Date Created

{{ $survey->created_at }}

Completed by:

@if(isset($groupedData[$survey->id]))
{{ count($groupedData[$survey->id]) }}
@else
0
@endif
Submissions
View Submissions
@endforeach

Question name

Last Active

Retarget?

Status

What is your group?

5 Multiple Choice, including other box

Never

All surveys are only active for 28 Days.
A maximum of three questions can be retargeted at once. If all retargets are turned off, then your active surveys will rotate, depending on survey preference.

How likely are you to recommend us?

Date Created

Jan 23, 2023

Reach

1200

Completed by:

587
Submissions
{{-- survey model --}}
@csrf
{{-- --}} @endsection