@props([ 'type' => 'generic', // survey | group-survey | forum | board | poll | readings | generic 'title' => null, 'subtitle' => null, 'session' => null, 'canvasUrl' => null, ]) @php $defaults = [ 'survey' => ['icon' => '📊', 'title' => 'End of Session Survey'], 'group-survey' => ['icon' => '👥', 'title' => 'Group Work Survey'], 'forum' => ['icon' => '💬', 'title' => 'Discussion Forum'], 'board' => ['icon' => '📋', 'title' => 'Collaborative Board'], 'poll' => ['icon' => '🗳️', 'title' => 'Poll'], 'readings' => ['icon' => '📚', 'title' => 'Reading Library'], 'generic' => ['icon' => '📝', 'title' => 'Activity'], ]; $meta = $defaults[$type] ?? $defaults['generic']; $resolvedTitle = $title ?: $meta['title']; $icon = $meta['icon']; @endphp
{{ $icon }}

{{ $resolvedTitle }}

@if($subtitle)

{{ $subtitle }}

@endif @if($session)
{{ $session }}
@endif
@if($canvasUrl) View in Canvas @endif