@extends('layouts.public') @section('title', $article->title . ' — Centro de Ayuda') @section('content')
{{-- Breadcrumb --}}
{{-- Sidebar --}} {{-- Content --}}

{{ $article->title }}

@if($article->kbCategory) {{ $article->kbCategory->name }} @endif {{ $article->visits }} visitas {{ $article->updated_at->diffForHumans() }}
{!! $article->content !!}
{{-- Related Articles --}} @if(isset($related) && $related->isNotEmpty())

Artículos relacionados

@foreach($related as $rel) {{ $rel->title }} @endforeach
@endif {{-- CTA --}}

¿No encontraste lo que buscabas?

Contactar Soporte
@endsection