@extends('layouts.app') @section('title', '文章详情') @section('content') @if ($advert)
@endif

{{ $parent->title }}

@foreach ($parent->childrens as $children)
{{ $children->title }}
@endforeach

{{ $category->title }}

首页 > @if ($parent->id==$category->id) {{ $category->title }} @else {{ $parent->title }} > {{ $category->title }} @endif

{{ $article->title }}

{{ $article->created_at }}
@if ($article->cover_path) @endif
{!! $article->content !!}
@endsection