@extends('layouts.app') @section('title', $course->name . ' — コメント') @section('page-title', $course->name) @section('page-subtitle-heading', '【この画面でできること】') @section('page-subtitle') 受講生がレッスンに投稿したコメントの確認・返信・表示/非表示・削除を行います。 @endsection @section('content') @include('site.course.partials._workspace_toolbar') @if(session('success'))
| 日時 | レッスン | 投稿者 | コメント | 運営返信 | 操作 |
|---|---|---|---|---|---|
| {{ $comment->created_at?->timezone(config('app.timezone'))->format('Y-m-d H:i') }} |
@if($comment->lesson)
{{ $comment->lesson->name }}
{{ $comment->lesson->course?->name }}
@else
—
@endif
|
{{ $comment->author_name ?: '—' }} |
{{ $comment->body }}
@if(! $comment->is_visible)
承認待ち / 非表示
@endif
|