@extends('frontend.layouts.master') @section('content') {{ $blog->title }} {{-- All Posts Wedding {{ $blog->title }} --}} {{ \Carbon\Carbon::parse($blog->date)->format('d, M Y') }} @foreach($blog->tags as $tag) {{ $tag->name }} @endforeach {!! $blog->description !!} @if($blog->author_image && $blog->author_name) {{ $blog->author_name }} Author @endif @if($prev_post) Previous post {{ $prev_post->title }} @endif @if($next_post) Next post {{ $next_post->title }} @endif Social media 3k Facebook 10K Twitter 1k Linkedin 100K Youtube Category @foreach($blog_categories as $category) {{ $loop->iteration }}{{ $category->name }} @endforeach Trending Posts @foreach($trending_blogs as $trending) {{ $trending->title }} @endforeach Subscribe Newsletter Blog & Articles Related posts @foreach($related_posts as $related) @foreach($related->tags as $tag) {{ $tag->name }} @endforeach {{ $related->title }} @if($related->author_image && $related->author_name) {{ $related->author_name }} Author @endif @endforeach @endsection
Blog & Articles