@extends('layouts.frontend') @section('title') {{$category['name']}} | Blog | @endsection @section('meta-description') {{\Illuminate\Support\Str::limit(strip_tags($category['description']), 150, '...')}} @endsection @section('meta-title') {{$category['title']}} @endsection @section('meta-og-url') {{url()->full()}} @endsection @section('meta-og-image') {{'https://cdn.stevenhardy.digital/steven-photos/' . $category['featured_image']}} @endsection @section('background-image') {{'https://cdn.stevenhardy.digital/steven-photos/' . $category['featured_image']}} @endsection @section('page_title') {{$category['title']}} @endsection @section('content')
@foreach($posts as $post)
{{$post->title}}

{{$post->category->name}}

{{$post->title}}

{{\Illuminate\Support\Str::limit(strip_tags($post['content']), 200, '...')}}

By {{$post->user->name}} {{date('F d, Y', strtotime($post->updated_at))}}
@endforeach
{!! $category['description'] !!}
@endsection