@extends('layouts.site') @section('page_class', 'page-home') @section('title', 'AIWeb - AI 聚合导航入口') @section('meta_description', '探索 AI 工具、模型、资讯与教程,统一入口快速搭建 AI 工作流。') @section('canonical', url('/')) @section('head') @endsection @section('content') @php $totalCount = ($stats['tools'] ?? 0) + ($stats['models'] ?? 0) + ($stats['articles'] ?? 0) + ($stats['guides'] ?? 0); @endphp
数据总量 {{ $totalCount }}
AIWEB.CN

一站式 AI 导航入口

参考工具导航页风格统一首页,帮助你用一致路径完成发现、比较与学习。

工具收录{{ $stats['tools'] ?? 0 }}
模型收录{{ $stats['models'] ?? 0 }}
资讯文章{{ $stats['articles'] ?? 0 }}
教程学习{{ $stats['guides'] ?? 0 }}

核心频道内容

@forelse($toolList->take(4) as $item)
{{ $item->name }}
工具 · {{ $item->pricing_type }}

{{ $item->summary }}

{{ $item->has_api ? '支持 API' : '无 API' }} 详情
@empty

暂无工具内容

@endforelse @forelse($modelList->take(4) as $item)
{{ $item->name }}
模型 · {{ $item->provider ?: '未知供应商' }}

{{ $item->summary }}

总分 {{ $item->total_score }} 详情
@empty

暂无模型内容

@endforelse
@endsection