@extends('layouts.app')
@section('title', $staff->t('name').'|'.$staff->shop->t('name').'|'.config('app.name'))
@section('content')
@if($staff->photo)
 }})
@else 写真 @endif
{{ $staff->t('name') }} ({{ __(':n歳', ['n'=>$staff->age]) }})
{{ __('プロフィール') }}
- {{ __('年齢') }}
- {{ $staff->age ? __(':n歳', ['n'=>$staff->age]) : '—' }}
- {{ __('身長/体重') }}
- {{ $staff->height?:'—' }}cm / {{ $staff->weight?:'—' }}kg
- {{ __('体型') }}
- {{ optional($staff->bodyType)->name ? __(optional($staff->bodyType)->name) : '—' }}
- {{ __('容姿') }}
- {{ optional($staff->lookType)->name ? __(optional($staff->lookType)->name) : '—' }}
- {{ __('髪型') }}
- {{ optional($staff->hairType)->name ? __(optional($staff->hairType)->name) : '—' }}
- {{ __('性格') }}
- {{ $staff->t('personality') ?: '—' }}
- {{ __('得意') }}
- {{ $staff->t('massage') ?: '—' }}
@if($staff->comment)
{{ __('スタッフからひとこと') }}
{{ $staff->t('comment') }}
@endif
@endsection