@extends('layouts.app') @section('title', $article->title) @section('content')

{{ $parent->title }}

    @if ($parent->children->isNotEmpty()) @foreach ($parent->children as $children)
  • id==$children->id) class="active" @endif> {{ $children->title }}
  • @endforeach @endif
{{ $category->title }}
您当前所在位置:首页 > @if ($category->id!=$parent->id) {{ $parent->title }} > @endif {{ $category->title }}
{{ $article->title }}
发布时间:{{ $article->created_at->format('Y-m-d') }}
{{-- @if ($article->cover)--}} {{-- --}} {{-- @endif--}} {!! $article->content !!}
@endsection