@extends('layouts.home') @section('title', $article->title) @section('keywords', $article->keywords) @section('description', $article->description) @section('content')
@if(Str::isTrue(config('bjyblog.breadcrumb')))
{{ Breadcrumbs::render() }}
@endif
@if(auth()->guard('admin')->check()) @endif

{{ $article->title }}

{!! $article->html !!}

@if(config('bjyblog.social_share.select_plugin') === 'sharejs')
@else
@endif
  • {{ translate('Previous Article') }}: @if(is_null($prev)) {{ translate('No More Article') }} @else {{ $prev->title }} @endif
  • {{ translate('Next Article') }}: @if(is_null($next)) {{ translate('No More Article') }} @else {{ $next->title }} @endif
      @foreach($likes as $like)
    • {{ $like->name }}
    • @endforeach
{{ config('app.name') }}
guard('socialite')->check())contenteditable="true" @endif>{{ translate('Please login to comment') }}
  • {{ translate('latest comments') }}
  • {!! translate('others.comment_count', ['count' => count($comments)]) !!}
@foreach($comments as $comment) @if(!$loop->first && $comment->depth === 0)
@endif
{{ config('app.name') }} @if($comment->socialiteUser->is_admin === 1) {{ config('app.name') }} @endif

{{ $comment->socialiteUser->name }} :{!! $comment->content !!}

{{ $comment->created_at }} {{ translate('Reply') }}

@if($loop->last && $comment->depth === 0)
@endif @endforeach
@endsection @section('js') @endsection