@extends('frontend.layout') @section('title', 'Inve Security - ' . $post->title) @section('description', $post->meta_description ?? $post->excerpt) @if($post->meta_keywords) @section('keywords', implode(',', $post->meta_keywords)) @endif @section('content')
{{ t('home') }} {{ t('blog') }} {{ Str::limit($post->title, 30) }}
@if($post->category)
{{ $post->category->name }}
@endif

{{ $post->title }} Security Insights

@if($post->author) {{ substr($post->author->name, 0, 1) }} @endif
@if($post->author) {{ $post->author->name }} @else {{ t('unknown_author') }} @endif
{{ $post->published_at->format('F j, Y') }}
{{ $post->read_time }} {{ t('min_read') }}
{{ $post->views }} {{ t('views') }}
@if($post->featured_image)
{{ $post->title }}
@endif
{!! $post->content !!}

{{ t('share_this_post') }}

@if($relatedPosts->count() > 0) @endif

{{ t('categories_title') }}

@foreach($categories as $category)
{{ $category->name }}
{{ $category->posts_count }}
@endforeach
@endsection