@extends('front.layout.template') @section('title', 'Laravel Blog - Rudi Kurniawan') @section('content')
...
{{ $latest_post->created_at->format('d-m-Y') }} | {{-- {{ $latest_post->User->names}} | --}} {{ $latest_post->Category->name }}

{{ $latest_post->title }}

{{ Str::limit(strip_tags($latest_post->desc), 200, '...') }}

Read more →
@foreach ($articles as $item)
...
{{ $item->created_at->format('d-m-Y') }} | {{-- {{ $latest_post->User->name}} | --}} {{ $item->Category->name }}

{{$item->title}}

{{ Str::limit(strip_tags($item->desc), 200, '...') }}

Read more →
@endforeach
@include('front.layout.side-widget')
@endsection