@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)
{{ $item->title }}

{{ App\Helpers\Methods::reformatDate($item->published_at) }}

@else
{{ $item->title }}

{{ App\Helpers\Methods::reformatDate($item->published_at) }}

@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
@include('landing.includes.footer') @include('landing.includes.back_to_top') @include('landing.includes.switcher') @endsection @push('prepend-script') @endpush