@extends('layouts.app') @section('title', 'Social Media Account Details') @section('content')

{{ $account->getPlatformDisplayName() }} Account

Back to Accounts
Account Information
@if($account->avatar_url) {{ $account->username }} @else
@endif
{{ $account->username }}
@if($account->profile_url) View Profile @endif
Status
@if($account->connected) Connected @else Disconnected @endif
Connected Since
{{ $account->created_at->format('F d, Y') }}
@if($account->expires_at)
Token Expires
{{ $account->expires_at->format('F d, Y H:i') }} @if($account->isTokenExpired()) Expired @elseif($account->expires_at->diffInDays(now()) < 7) Expiring Soon @endif
@endif
Refresh Token
@csrf @method('DELETE')
Account Analytics
Followers
{{ number_format(rand(500, 10000)) }}
Posts
{{ number_format(rand(10, 500)) }}
Engagement Rate
{{ number_format(rand(1, 10) / 100, 2) }}%
Recent Activity
Recent Posts
@for ($i = 0; $i < 5; $i++)
Post Title #{{ $i + 1 }}
{{ now()->subDays(rand(1, 30))->format('M d') }}

This is a sample post content for demonstration purposes. It shows how posts would appear in this interface.

{{ rand(5, 500) }}
{{ rand(0, 50) }}
{{ rand(0, 25) }}
@endfor
@endsection @section('styles') @endsection @section('scripts') @endsection