Data: {{ __data_pt($item->data) }}
AnĂșncio: {{ $item->anuncio ? $item->anuncio->nome : '#'.$item->item_id }}
Pergunta: {{ $item->texto }}
{!!Form::open()
->put()
->route('mercado-livre-perguntas.update', [$item->id])
!!}
@if($item->status != 'ANSWERED')
{!!Form::textarea('resposta', 'Resposta')->required()
!!}
@else
{!!Form::textarea('resposta', 'Resposta')
->value($item->resposta)
->readonly()
!!}
@endif
@if($item->status != 'ANSWERED')
@endif
{!!Form::close()!!}