@extends('layouts.site') @section('page_class', 'page-tools page-detail') @section('title', $item->seo_title ?: $item->name.' - AI工具详情') @section('meta_description', $item->seo_description ?: $item->summary) @section('canonical', $item->canonical_url ?: route('tools.show', $item->slug)) @section('head') @endsection @section('content') @php $name = trim((string) ($item->h1 ?: $item->name)); $logoText = mb_strtoupper(mb_substr($item->name ?: 'AI', 0, 2)); @endphp @if($showRiskNotice) @endif
{{ $item->category?->name ?? 'AI 工具' }} {{ $item->pricing_type }} {{ $item->has_api ? '支持 API' : '无 API' }} {{ $item->source_level?->label() ?? '未知来源' }}

{{ $name }}

{{ $item->summary }}

访问官网 @if($item->alternative) 查看替代工具 @endif

工具详细介绍

更新于 {{ $item->updated_at?->format('Y-m-d') ?? '-' }}
@if(trim((string) $item->description) !== '') {!! $descriptionHtml !!} @else

{{ $item->summary }}

@endif

功能亮点

基于内容自动提取
@if(!empty($capabilityTags))
@foreach($capabilityTags as $tag)
{{ $tag }}
@endforeach
@else

暂无可展示的功能标签。

@endif
@if($relatedTools->isNotEmpty()) @endif
@endsection