@extends('layout.app') @section('content')

Detalles de la publicación

@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
@if (isset($post->media))
@endif @if(isset($post->social_channel))

{{ $post->social_channel->name }}

@endif @if(isset($post->social_network))

{{ $post->social_network->name }}

@endif

{{ ucfirst($post->status) }}

{{ $post->caption }}

{{ $post->scheduled_at ? \Carbon\Carbon::parse($post->scheduled_at)->format('d/m/Y H:i') : 'No programado' }}

{{ \Carbon\Carbon::parse($post->created_at)->format('d/m/Y H:i') }}

{{ \Carbon\Carbon::parse($post->updated_at)->format('d/m/Y H:i') }}

@endsection