@extends('layouts.console') @section('title','お客様の声')@section('console','店舗管理')@section('heading','お客様の声(店舗投稿型口コミ)') @section('who', $member->name.' 様')@section('logout', route('member.logout')) @section('nav')@include('member._nav')@endsection @section('content') @php $features = $member->planFeatures(); $limit = array_key_exists('customer_voice_limit', $features) ? $features['customer_voice_limit'] : 0; $limitTxt = $limit === null ? '無制限' : ($limit.'件'); @endphp
自店でお客様から集めたアンケート・感想を、「お客様の声」として店舗が代理で投稿できます。 管理者の承認後、店舗ページの「お客様の声」セクションと口コミ一覧に 「店舗による投稿(お客様アンケート転載)」のバッジ付きで掲載されます。 実体験を伴わない作り話や、お客様の許諾を得ていない投稿は掲載できません(景表法ステマ規制対応)。
プラン上限: {{ $limitTxt }}
@if(session('flash'))
{{ session('flash') }}
@endif

+ お客様の声を投稿

@forelse($voices as $v) @empty @endforelse
店舗お客様タイトル状態受領日
{{ $v->shop->name ?? '—' }} {{ str_repeat('★', $v->rating) }} {{ $v->customer_label }} {{ \Illuminate\Support\Str::limit($v->title, 28) }} {{ ['pending'=>'承認待ち','published'=>'掲載中','rejected'=>'却下'][$v->status] ?? $v->status }} {{ $v->received_at?->format('Y-m-d') ?? '—' }} 編集
@csrf
まだ投稿はありません。
{{ $voices->links() }}
@endsection