@if ($name = $team->name)
@endif
@if($title = $team->title)
{{ $title }}
@endif
@if ($socials = $team->socials)
@foreach(['facebook', 'twitter', 'instagram'] as $social)
@if ($url = Arr::get($socials, $social))
@switch($social)
@case('twitter')
-
@break
@case('facebook')
-
@break
@case('instagram')
-
@break
@endswitch
@endif
@endforeach
@endif