@extends('layouts.app') @section('title', $post->title . ' - Redsom Group') @section('description', Str::limit(strip_tags($post->content), 160)) @section('content')
Back to Media

{{ $post->title }}

{{ $post->type }} {{ $post->category }} {{ $post->published_at->format('F d, Y') }} {{ $post->views }} views
@if($post->media_path) @if($post->type === 'image') {{ $post->title }} @elseif($post->type === 'video') @endif @endif
@if($post->content)

{{ $post->content }}

@else

This is a {{ $post->type }} post in the {{ $post->category }} category.

@endif
@if($post->thumbnail_path && $post->type === 'video')
@if($post->thumbnail_path) Thumbnail @endif
@endif
@if($relatedPosts->count() > 0)

Related Posts

@endif @endsection