{!! $shop->getQualifiedName() !!}

{{ trans('theme.member_since') }}: {{ $shop->created_at->diffForHumans() }}

{{ trans('theme.logo') }}
{{ $shop->inventories_count }}
{{ trans('theme.active_listings') }}
 
@include('website.layouts.ratings', ['ratings' => $shop->feedbacks->avg('rating'), 'count' => $shop->feedbacks->count()])
{{ \App\Helpers\Statistics::sold_items_count($shop->id) }}
{{ trans('theme.items_sold') }}
  • {{ trans('theme.description') }}
  • {{ trans('theme.profile') }}
  • @if ($shop->config->return_refund)
  • {{ trans('theme.return_and_refund_policy') }}
  • @endif
  • {{ trans('theme.latest_reviews') }}
{!! $shop->description !!}
{!! $shop->owner->name !!}
{!! $shop->address->toShortString() !!}
{!! $shop->config->support_phone !!}
{!! $shop->config->support_email !!}
{!! $shop->config->return_refund !!}
@forelse($shop->latestFeedbacks as $feedback)

{{ $feedback->customer->nice_name ?? $feedback->customer->name }} @lang('theme.verified_purchase') | {{ $feedback->created_at->diffForHumans() }}

{{ $feedback->comment }}

@include('theme::layouts.ratings', ['ratings' => $feedback->rating]) @unless($loop->last)
@endunless @empty

@lang('theme.no_reviews')

@endforelse