Authorized Corporate Services
@foreach($services as $service)
@endforeach
@if($service['logo'])
@elseif($service['icon_svg'] === 'outlook' || (empty($service['icon_svg']) && (str_contains(strtolower($service['name']), 'outlook') || str_contains(strtolower($service['name']), 'mail'))))
@elseif($service['icon_svg'] === 'teams' || (empty($service['icon_svg']) && (str_contains(strtolower($service['name']), 'teams') || str_contains(strtolower($service['name']), 'microsoft'))))
@elseif($service['icon_svg'] === 'keka' || (empty($service['icon_svg']) && str_contains(strtolower($service['name']), 'keka')))
@elseif($service['icon_svg'] && str_starts_with($service['icon_svg'], '
@else
{{ strtoupper(substr($service['name'], 0, 1)) }}
@endif
{{ strtoupper($service['name']) }}
My Custom Apps
@forelse($personalApps as $pApp)
@empty
@if($pApp->logo)
@else
{{ strtoupper(substr($pApp->name, 0, 1)) }}
@endif
{{ strtoupper($pApp->name) }}
@if($pApp->tag){{ $pApp->tag }}
@endif
No custom apps added yet. Click "+ Add Custom App" to add your own shortcuts!
@endforelse