@extends('adminlte::page') @section('title', $postagem->assunto) @section('content_header')

{{ $postagem->assunto }}

@stop @section('content')
user image {{ $postagem->user->name }} {{ $postagem->data_publicado->format('d/m/Y H:i') }}
{!! $postagem->descricao !!} @if(auth()->user()->id == $postagem->user->id)

Editar

@endif
@include('admin.postagens.respostas') @include('admin.postagens.resposta') @stop