@extends('layouts.admin') @section('title', 'Distribution & Invitations') @section('header', 'Distribution & Invitations') @section('subheader', $survey->title) @section('header-actions') Back to Survey @endsection @php $defaultBody = "Dear Colleague, You are invited to participate in the " . $survey->title . ". Your feedback is valuable and will help us improve our workplace. Click the link below to start the survey: {survey_link} This survey is anonymous and will take approximately " . ($survey->estimated_minutes ?? 10) . " minutes to complete. Thank you for your participation. Best regards, " . ($survey->company->name ?? 'HR Team'); @endphp @section('content')
No distribution links yet.
Create a link to share the survey.
Send reminder emails to {{ $stats['pending'] }} people who haven't completed the survey.
{{ $survey->company->name ?? 'N/A' }}
{{ ucfirst($survey->status) }}
{{ $responseCount }}
| Status | Sent At | Completed At | Actions | |
|---|---|---|---|---|
| {{ $invitation->email }} | @if($invitation->completed_at) Completed @elseif($invitation->sent_at) Sent @else Pending @endif | {{ $invitation->sent_at ? $invitation->sent_at->format('M d, Y H:i') : '-' }} | {{ $invitation->completed_at ? $invitation->completed_at->format('M d, Y H:i') : '-' }} | @if(!$invitation->completed_at && $invitation->sent_at) @endif |