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