@extends('layouts.app') @section('title', 'Profile Details') @section('page-title', 'Profile Details') @section('content')

{{ $profile->profile_name }}

{{ $profile->description ?? 'No description' }}

Connected Platforms

@if(isset($accounts['accounts']) && count($accounts['accounts']) > 0)
@foreach($accounts['accounts'] as $account) @php $accountId = $account['_id'] ?? $account['id'] ?? ''; $platform = $account['platform'] ?? 'unknown'; $username = $account['username'] ?? $account['name'] ?? $account['accountName'] ?? 'Connected'; @endphp

{{ ucfirst($platform) }}

{{ $username }}

@if(config('app.debug'))

ID: {{ $accountId }}

@endif
Active
@endforeach
@else

No platforms connected yet

Connect a platform below to get started

@endif

Connect New Platform

Click a platform below to connect via OAuth

@foreach(['facebook', 'instagram', 'linkedin', 'twitter', 'tiktok', 'youtube', 'pinterest', 'reddit', 'threads', 'bluesky'] as $platform) @endforeach
@endsection