@extends('layouts.console') @section('title','自店宛の口コミ')@section('console','店舗管理')@section('heading','自店宛の口コミ') @section('who', auth('member')->user()->name.' 様')@section('logout', route('member.logout')) @section('nav')@include('member._nav')@endsection @section('content')

口コミ一覧

@forelse($reviews as $r)
{{ $r->displayName() }} さん {{ optional($r->created_at)->format('Y-m-d') }} {{ ['published'=>'公開','pending'=>'承認待ち','rejected'=>'非公開'][$r->status] ?? $r->status }} {{ optional($r->shop)->name }}
{{ $r->title }}
{{ $r->body }}
@if($r->reply && $r->reply->status==='published')
店舗からの返信
{{ $r->reply->body }}
@endif @planfeature('review_reply')
@csrf
@else
口コミへの返信は有料プランの機能です。プランを見る
@endplanfeature
@empty
まだ口コミがありません。
@endforelse
{{ $reviews->links() }}
@endsection