@extends('layouts.site') @section('page_class', 'page-tools-list') @section('title', 'AI工具列表 - AIWeb') @section('meta_description', 'AI工具独立列表页,支持关键词、分类、价格、API能力等筛选。') @section('canonical', route('tools.list')) @section('content')
工具列表

AI工具独立列表页

从工具集首页点击“查看更多”进入,支持完整筛选与分页浏览。

@if($items->isNotEmpty())
@foreach($items as $tool)
{{ $tool->name }}
{{ $tool->category?->name ?? '未分类' }} · {{ $tool->pricing_type }}

{{ $tool->summary }}

{{ $tool->has_api ? '支持 API' : '无 API' }} 详情
@endforeach
{{ $items->links() }}
@else

没有找到匹配工具,请尝试调整筛选条件。

@endif
@endsection