@extends('layouts.site')
@section('page_class', 'page-guides')
@section('title', 'AI 教程 - AIWeb')
@section('meta_description', '从入门到实战的 AI 教程集合,按难度分层学习并落地工作流。')
@section('canonical', route('guides.index'))
@section('content')
学习路径
AI 教程与实战路径
按难度分层组织教程,帮助你从零搭建可复用的 AI 工作流。
@forelse($items as $guide)
{{ $guide->title }}
{{ $guide->difficulty }}
{{ $guide->excerpt }}
更新于 {{ $guide->updated_at?->format('Y-m-d') }}
阅读
@empty
@endforelse
{{ $items->links() }}
@endsection