@extends('layouts.frontend') @section('title') Steven's Snapshots | Photography Blog | Tips and Tricks @endsection @section('page_title') Steven's Snapshots: Exploring the World Through Photography @endsection @section('page_subheading') Dive into Steven's Photographic Journey: Tips, Tricks, and Tales from Behind the Lens @endsection @section('meta-description') Join hobby photographer Steven Hardy as he shares his passion for photography through engaging blog posts. Explore diverse themes, learn new techniques, and see the world through his lens. @endsection @section('meta-title') Steven's Snapshots | Photography Blog | Tips and Tricks @endsection @section('meta-og-url') {{url()->full()}} @endsection @section('meta-og-image') https://cdn.stevenhardy.digital/steven-photos/website-images/blog-header.jpg @endsection @section('background-image') https://cdn.stevenhardy.digital/steven-photos/website-images/blog-header.jpg @endsection @section('content')
@if(count($pinned_posts) > 0)

Highlighting Steven's Captivating Photography: Featured Blog Posts

@foreach($pinned_posts as $post) @endforeach
@endif

Explore the Latest in Photography: Recent Blog Posts by Steven

@foreach($recent_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->created_at))}}
@endforeach

Dive into Photography Themes: Discover Blog Categories by Steven

@foreach ($categories->slice(0, 1) as $category) @endforeach @foreach ($categories->slice(1, 2)->take(2) as $category) @endforeach
@foreach ($categories->slice(3, 4)->take(1) as $category) @endforeach
@endsection