@extends('board.layout-review') @section("review-list")
{{ $post->content->title }}

Overall 점수

{{ $post->overall }}

달성기간

{{ $post->period }}

점수

Listening {{ $post->listening }} Writing {{ $post->writing }} Reading {{ $post->reading }} Speaking {{ $post->speaking }}

특징

달성기간{{ $post->period }}
@php $tags = $post->tags ? explode("|", $post->tags) : []; @endphp @foreach ($tags as $tag)
{{ $tag }}
@endforeach
@if ($post->attachments)

성적표 사진

@foreach ($post->attachments as $attachment)
@endforeach
@endif

{!! nl2br($post->content->content) !!}

@endsection @section("review-script") @endsection