@php
$not_show = [
'pack',
'graduate',
'professional_certificate',
'seminar'
];
@endphp
@if(! in_array($team->category, $not_show))
@endif
@if ($content != 'contents.default')
@endif
@if ($section_2->count() > 0)
@foreach($section_2 as $key_activity => $activity)
{{$activity->title ?? 'Conteúdo Diverso'}}
@livewire('content.'.$activity->url, ['product_type' => 'course', 'product_id' => $team->id], key('content_'.$key_activity))
@endforeach
@endif
@php
$not_videos = [
'pack',
'graduate',
'professional_certificate',
'seminar'
];
@endphp
@if(!in_array($team->category, $not_videos))
@endif
{{-- @livewire('course.teacher-chat') --}}