@extends('theme::layout.public') @section('seo_title'){{ parse_seo_template('seo_article_title',$article) }}@endsection @section('seo_keyword'){{ parse_seo_template('seo_article_keyword',$article) }}@endsection @section('seo_description'){{ parse_seo_template('seo_article_description',$article) }}@endsection @section('css') @endsection @section('content')

{{ $article->title }}

@if($article->tags) @endif
{{ $article->summary }}
{!! $article->content !!}
  • 发表于 {{ timestamp_format($article->created_at) }}
  • 阅读 ( {{$article->views}} )
  • @if($article->category)
  • 分类:{{ $article->category->name }} @endif
  • @if($article->status !== 2 && Auth()->check() && (Auth()->user()->id === $article->user_id || Auth()->user()->can('admin.login') ) )
  • 编辑
  • @endif @if(Auth()->check())
  • 举报
  • @endif
@if($article->user->qrcode) @endif @if(Auth()->check() && Auth()->user()->isCollected(get_class($article),$article->id)) @else @endif
@if(Setting()->get('website_share_code')!='')
{!! Setting()->get('website_share_code') !!}
@endif

你可能感兴趣的文章

相关问题

{{ $article->comments }} 条评论

@include('theme::comment.collapse',['comment_source_type'=>'article','comment_source_id'=>$article->id,'hide_cancel'=>true])
{{ $article->user->name }}
{{ $article->user->name }} @if($article->user->title)

{{ $article->user->title }}

@endif

{{ $article->user->userData->articles }} 篇文章

作家榜 »

    @foreach($topUsers as $index => $topUser)
  1. {{ $topUser['name'] }} {{ $topUser['articles'] }} 文章
  2. @endforeach
@endsection @section('script') @include('theme::layout.report_modal') @include('theme::layout.qrcode_pament',['source_id'=>'article-'.$article->id,'paymentUser'=>$article->user,'message'=>'如果觉得我的文章对您有用,请随意打赏。你的支持将鼓励我继续创作!']) @endsection