@extends('layouts.shop') @section('title', $blog->meta_title ?? $blog->title . ' | Hair Niche By Shelly') @section('meta_description', $blog->meta_description ?? Str::limit($blog->excerpt, 160)) @if(!empty($blog->schema_markup)) @push('head_scripts') @endpush @endif @section('content')

{{ $blog->title }}

Published on {{ $blog->published_at ? $blog->published_at->format('F d, Y') : '' }}
@if($blog->image)
{{ $blog->title }}
@endif
{!! $blog->content !!}

You might also like

@forelse($recentBlogs as $recent)
@if($recent->image) {{ $recent->title }} @else
@endif

{{ $recent->title }}

{{ $recent->published_at ? $recent->published_at->format('M d, Y') : '' }}

@empty

No other recent posts.

@endforelse
@endsection