@php $statusColors = [ 'pending' => 'text-gray-400', 'extracting' => 'text-blue-500', 'extracted' => 'text-blue-500', 'summarizing' => 'text-violet-500', 'summarized' => 'text-emerald-500', 'failed' => 'text-red-500', ]; $readingColors = [ 'unread' => 'bg-sky-100 text-sky-700 dark:bg-sky-500/15 dark:text-sky-400', 'reading' => 'bg-blue-100 text-blue-700 dark:bg-blue-500/15 dark:text-blue-400', 'read' => 'bg-emerald-100 text-emerald-700 dark:bg-emerald-500/15 dark:text-emerald-400', 'pending_review' => 'bg-amber-100 text-amber-700 dark:bg-amber-500/15 dark:text-amber-400', 'archived' => 'bg-gray-100 text-gray-500 dark:bg-white/5 dark:text-gray-400', ]; $platformIcons = [ 'youtube' => 'fa-brands fa-youtube text-red-500', 'tiktok' => 'fa-brands fa-tiktok', 'instagram' => 'fa-brands fa-instagram text-pink-500', 'facebook' => 'fa-brands fa-facebook text-blue-600', 'x' => 'fa-brands fa-x-twitter', 'linkedin' => 'fa-brands fa-linkedin text-blue-700', 'pinterest' => 'fa-brands fa-pinterest text-red-600', 'reddit' => 'fa-brands fa-reddit text-orange-500', 'github' => 'fa-brands fa-github', 'medium' => 'fa-brands fa-medium', 'spotify' => 'fa-brands fa-spotify text-green-500', 'vimeo' => 'fa-brands fa-vimeo text-cyan-500', 'twitch' => 'fa-brands fa-twitch text-violet-500', 'web' => 'fa-solid fa-globe text-gray-400', ]; $platformIcon = $platformIcons[$link->platform] ?? 'fa-solid fa-globe text-gray-400'; @endphp
{{ $link->domain }} @if ($link->folder) · {{ $link->project?->name }} / {{ $link->folder?->name }} @endif