@forelse($links as $i => $link) @empty @endforelse
# Keyword Anchor Source → Target Project Score Breakdown
{{ $i + 1 }}
{{ $link->query ?? '—' }}
Clicks: {{ number_format($link->total_clicks ?? 0) }} | Impressions: {{ number_format($link->total_impressions ?? 0) }} | CTR: {{ isset($link->avg_ctr) ? round($link->avg_ctr * 100, 2) . '%' : '—' }} | Position: {{ isset($link->avg_position) ? round($link->avg_position, 2) : '—' }}
{{ $link->anchor_text ?? '—' }}
{{ ucfirst($link->anchor_type ?? 'mixed') }}
FROM
{{ $link->source_url }}
TO
{{ $link->target_url }}
@if(!empty($link->project_names)) @foreach($link->project_names as $k => $name) {{ $name }} @if(!empty($link->project_tokens[$k])) ({{ $link->project_tokens[$k] }}) @endif
@endforeach @else — @endif
@php $color = $link->score >= 70 ? 'bg-success' : ($link->score >= 40 ? 'bg-warning' : 'bg-info'); @endphp
{{ number_format($link->score, 1) }}
@if(!empty($link->score_breakdown))
    @foreach($link->score_breakdown as $key => $val) @if($val > 0)
  • {{ ucwords(str_replace('_',' ',$key)) }}: {{ $val }}
  • @endif @endforeach
@else — @endif
No internal link suggestions found.