@extends('front.layout.template');
@section('title', $article->title . ' - Blog Rudi Kurniawan')
@section('content')
{{ $article->created_at->format('d-m-Y') }} |
{{ $article->User->name }}
{{ $article->Category->name }}
{{ $article->views }} x dilihat
{{ $article->title }}
{!! $article->desc !!}
@include('front.layout.side-widget')
@endsection