@extends('layouts.site') @section('page_class', 'page-tools') @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')
{{ $item->category?->name ?? 'AI 工具' }} {{ $item->pricing_type }} {{ $item->has_api ? '支持 API' : '无 API' }}

{{ $item->h1 ?: $item->name }}

{{ $item->summary }}

@if($showRiskNotice) @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
@endif

快速看点

适用平台
{{ $item->platform ?: '未提供' }}
支持语言
{{ $item->language ?: '未提供' }}
来源可信度
{{ $item->source_level?->label() ?? '未知' }}

适用场景建议

  • 如果你是首次上手,建议先用免费方案完成一个小任务验证效果。
  • 有团队协作需求时,优先验证 API、权限管理与数据导出能力。
  • 生产使用前,建议再次核验官方价格、条款与数据安全说明。
@if($relatedTools->isNotEmpty())

同类工具推荐

@foreach($relatedTools as $tool)
{{ $tool->name }}

{{ $tool->summary }}

{{ $tool->pricing_type }} {{ $tool->has_api ? 'API' : 'No API' }}
@endforeach
@endif
@endsection