@extends('layouts.app') @section('title', '首页') @section('content') @include('category.navigation')
@include('category.left') @if ($articles->isNotEmpty())
    @foreach ($articles as $article)
  • {{ $article->title }}
    {{ $article->description }}
  • @endforeach
@if ($articles->isNotEmpty()) {{ $articles->links('layouts.pagination') }} @endif
@else
抱歉,暂无内容
@endif
@endsection