@extends('layouts.site') @section('page_class', 'page-news') @section('title', 'AI 资讯 - AIWeb') @section('meta_description', '追踪 AI 行业动态、模型发布与产品更新,快速获取高价值信息。') @section('canonical', route('news.index')) @section('content')
资讯聚合

AI 行业资讯追踪

聚合官方、媒体和社区动态,按时间线与可信度快速筛选。

@forelse($items as $article)
{{ $article->published_at?->format('m-d') ?? '--' }}
{{ $article->published_at?->format('H:i') ?? '' }}
{{ $article->source_level?->label() ?? '来源未知' }} @if($article->is_stale) 可能过期 @endif
{{ $article->title }}

{{ $article->excerpt }}

@empty

暂无资讯数据

@endforelse
{{ $items->links() }}
@endsection