@extends('layouts.frontend') @section('title') All Blog Posts | @endsection @section('page_title') All Blog Posts @endsection @section('page_subheading') View all of the articles written by Photographs by Steven. From animal general knowledge to photography tips, follow to find out more! @endsection @section('meta-description') View all of the articles written by Photographs by Steven. From animal general knowledge to photography tips, follow to find out more! @endsection @section('meta-title') View all posts @endsection @section('meta-og-url') {{url()->full()}} @endsection @section('meta-og-image') https://cdn.stevenhardy.digital/steven-photos/website-images/all-posts-header.jpg @endsection @section('background-image') https://cdn.stevenhardy.digital/steven-photos/website-images/all-posts-header.jpg @endsection @section('content')
@foreach($posts as $recent)
{{$recent->title}}

{{$recent->category->name}}

{{$recent->title}}

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

By {{$recent->user->name}} {{date('F d, Y', strtotime($recent->updated_at))}}
@endforeach
@endsection