@extends('views.layouts.master') @section('content')
@switch($postType['C5']) @case('image') @case('gallery')
blog
@break @case('movie')
@break @endswitch
  • {{ $post['C7'] }}
  • {{ $post['C11'] }}

{{ $post['C5'] }}

{!! $post['C6'] !!}
@if ($prePost) @endif @if ($nextPost) @endif

댓글쓰기

@csrf
    @forelse($comments ?? [] as $index => $comment)
  • {{ $comment['C4'] }} {{ DataConverter::execute($comment['C1'], 'diffForHumans') }} 신고
    {{ $comment['C3'] }}
    000 000
    @csrf
      @forelse($comment['ReplyPage'] ?? [] as $reply)
    • {{ $reply['C4'] }} {{ DataConverter::execute($reply['C1'], 'diffForHumans') }} 신고
      {{ $reply['C3'] }}
      000 000
    • @empty @endforelse
  • @empty @endforelse
@if ($comments->hasPages())
{{ $comments->appends(['limit' => request('limit')])->links() }}
@endif
@endsection