@extends('landing-page.layouts.default') @section('content')
@if(isset($blog->attchments[0]) && $blog->attchments[0]) blog-image @else placeholder-image @endif

{{ $blog->title }}

  • author-image
    {{ $blog->author_name }}
  • {{ $blog->publish_date }}
  • {{ $blog->read_time }} {{__('landingpage.min_read')}}
  • @if(isset($blog->tags))
      @foreach ($blog->tags as $index => $tags) @if ($index < 3)
    • {{ $tags }}
    • @endif @endforeach
    @endif

{!! $blog->description !!}

@if (count($blog->attchments) > 0) @foreach ($blog->attchments as $index => $attachment) @if ($index > 0)
blog
@endif @endforeach @endif
    @if(isset($blog->tags))
  • Tags :
  • @foreach($blog->tags as $tags)
  • {{ $tags }}
  • @endforeach @endif
@endsection