@extends('layouts.app') @section('title', $category->title) @section('content')

{{ $category->title }}

@foreach($posts as $post)
{{ $post->title }}

{{ $post->title }}

{{ $post->sub_title }}

{!! Str::words($post->content, 65) !!}

{{ $post->created_at->diffForHumans() }}

@endforeach {{ $posts->links() }}
@endsection