@extends('layouts.app') @section('title', $parent->title) @section('css') @endsection @section('content') @include('category.navigation')
@include('category.left') @if ($articles->isNotEmpty())
@foreach ($articles as $article)

{{ $article->title }}

@endforeach
@if ($articles->isNotEmpty()) {{ $articles->links('layouts.pagination') }} @endif
@else
抱歉,暂无内容
@endif
@endsection @push('script') @endpush