@extends('layout') @section('title') single-post @endsection @section('content')
{{$post->text}}
{{Str::limit($post->created_at, $limit=11, $end="")}}
@if ($moderates->count() != 0)
отредактированно
@endif
@csrf
@error('user')
{{$message}}
@enderror
@error('text')
{{$message}}
@enderror
@if ($comments->count() == 0)
Будьте первым кто напишет комментарий
@else @each("comments.comment", $comments, "comment") @endif
@yield('action-button') @endsection