{{ $article->title }}

{{ $article->title }}

{!! $article->content !!}
@if ($article->tags()->count() > 0)

{{ __('Tags') }}:

@foreach ($article->tags as $tag) {{ $tag->name }} @endforeach
@endif
@csrf

{{ __('Was this article helpful?') }}

{!! __(':helpfulCount out of :votesCount marked as helpful', ['helpfulCount' => $article->helpfulVotes->count(), 'votesCount' => $article->votes->count() ]) !!}

{!! __('Have more questions? Please Contact Us.', ['contactUrl' => url('contact')]) !!}

@include('layouts.sidebar')