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

{{ $news->title }}

Publicado em: {{ $news->published_at }}

@if ($news->image) Imagem da notícia @endif

{{ $news->content }}

@csrf
@csrf @method('DELETE')

Comentários

@foreach ($news->comments as $comment)
Comentário: {{ $comment->comment }}
Por: {{ $comment->user->name }} ({{ $comment->created_at }})
@endforeach

Adicionar Comentário

@csrf
@endsection