@extends('layouts.app') @section('title', $shop->t('name').'('.$shop->t('pref').'・'.$shop->t('city').')|'.config('app.name')) @section('meta_description', \Illuminate\Support\Str::limit(strip_tags($shop->t('pr')) ?: $shop->t('name').__('の口コミ・料金・スタッフ情報'), 110)) @section('og_type', 'business.business') @include('partials.jsonld-shop') @section('content')
{{ __('ホーム') }}{{ $shop->t('pref') }} > {{ $shop->t('name') }}
@if($shop->photo){{ $shop->t('name') }}@else メイン写真 @endif

{{ $shop->t('name') }}

{{ number_format($shop->review_avg,1) }} {{ __('口コミ :n 件', ['n'=>$shop->review_count]) }} {{ __('PV') }} {{ number_format($shop->pv_total) }}
{{ $shop->t('pref') }}{{ $shop->t('city') }} / {{ $shop->t('address') }}
@foreach($shop->categories as $c){{ __($c->name) }}@endforeach

{{ __('基本情報') }}

{{ __('料金') }}
{!! nl2br(e($shop->t('price_system'))) !!}
{{ __('住所') }}
〒{{ $shop->zip }} {{ $shop->t('pref') }}{{ $shop->t('city') }}{{ $shop->t('address') }}
{{ __('電話') }}
{{ $shop->tel ?: '—' }}
{{ __('アクセス') }}
{{ $shop->t('access') ?: '—' }}

{{ __('お店からのメッセージ') }}

{{ $shop->t('pr') }}

@if($staffs->count())

{{ __('在籍スタッフ(:n名)', ['n'=>$staffs->count()]) }}

@endif @if(isset($customerVoices) && $customerVoices->count())

{{ __('お客様の声') }} {{ __('店舗による投稿') }}

{{ __('お客様アンケート等を店舗が許諾を得て掲載した投稿です。一般口コミとは別枠で、★平均には含めません。') }}
@foreach($customerVoices as $v)
{{ __(':label さんからの評価', ['label'=>$v->customer_label]) }}
{{ $v->t('title') }}
{{ $v->t('body') }}
{{ __('店舗による投稿(お客様アンケート転載)') }} @if($v->received_at) {{ __('受領: :d', ['d'=>$v->received_at->format('Y-m-d')]) }} @endif
@endforeach
@endif @if($shop->member && $shop->member->planAllows('reservation_form'))

{{ __('予約リクエスト') }}

@csrf
{{ __('送信内容は店舗へ直接通知されます。確定ではなく、店舗からの返信で確定します。') }}
@endif

{{ __('口コミ(:n件)', ['n'=>$shop->review_count]) }}

{{ __('投稿する ›') }}
{{ __('★ この店舗に口コミを投稿') }}
@endsection