@extends('layouts.site') @section('page_class', 'page-guides') @section('title', 'AI 教程学习 - AIWeb') @section('meta_description', '从入门到实战的 AI 教程集合,按难度分层学习并落地工作流。') @section('canonical', route('guides.index')) @section('content') @php $icons = ['bi-book', 'bi-layers', 'bi-rocket']; $resetDifficultyFilters = array_filter([ 'q' => $filters['q'] ?? null, ], fn ($value) => $value !== null && $value !== ''); @endphp
AIWEB.CN

AI教程学习

按难度分层与场景化路线组织,帮助你稳定构建可复用 AI 工作流。

教程列表

@if($items->isNotEmpty())
@foreach($items as $guide)
{{ $guide->title }}
{{ $guide->difficulty }} · {{ $guide->updated_at?->format('Y-m-d') }}

{{ $guide->excerpt }}

实战教程 阅读
@endforeach
{{ $items->links() }}
@else

暂无教程数据

@endif
@endsection