@extends('landing.layouts.app')
@section('content')
@include('landing.includes.navbar')
{{ $blog->title }}
- {{ __('landing.about.published_on') }} : {{ App\Helpers\Methods::reformatDate($blog->published_at) }}
{!! App\Helpers\Methods::convertMarkdownToHtml($blog->content) !!}
Recent post
@foreach($related as $item)
@if($loop->first)
@else
@endif
@endforeach
Social sites
@if($generalSettings->social_linkedin != '')
@endif
@if($generalSettings->social_facebook != '')
@endif
@if($generalSettings->social_instagram != '')
@endif
@if($generalSettings->social_twitter != '')
@endif
@if($generalSettings->social_email != '')
@endif
Tags
@foreach($blog->tags as $tag)
- {{ $tag->getTranslation('name', 'en') }}
@endforeach
@include('landing.includes.footer')
@include('landing.includes.back_to_top')
@include('landing.includes.switcher')
@endsection
@push('prepend-script')
@endpush