@extends('layouts.site') @section('page_class', 'page-news') @section('title', 'AI 资讯文章 - AIWeb') @section('meta_description', '追踪 AI 行业动态、模型发布与产品更新,快速获取高价值信息。') @section('canonical', route('news.index')) @section('content') @php $icons = ['bi-newspaper', 'bi-lightning', 'bi-megaphone', 'bi-globe', 'bi-broadcast', 'bi-bookmark-star']; $resetCategoryFilters = array_filter([ 'q' => $filters['q'] ?? null, ], fn ($value) => $value !== null && $value !== ''); @endphp
资讯总量 {{ $newsStats['total'] ?? 0 }}
AIWEB.CN

AI资讯文章

聚合行业快讯与深度内容,帮助你快速判断趋势与机会窗口。

资讯总量{{ $newsStats['total'] ?? 0 }}
今日新增{{ $newsStats['today'] ?? 0 }}
高可信来源{{ $newsStats['high_source'] ?? 0 }}
7天更新{{ $newsStats['updated_7d'] ?? 0 }}

资讯列表

@if($items->isNotEmpty())
@foreach($items as $article)
{{ $article->title }}
{{ $article->source_level?->label() ?? '来源未知' }} · {{ $article->published_at?->format('Y-m-d H:i') }}

{{ $article->excerpt }}

@if($article->is_stale) 可能过期 @else 已验证 @endif 阅读
@endforeach
{{ $items->links() }}
@else

暂无资讯数据

@endif
@endsection