@extends('themes.basic.businesses.layout') @section('title', d_trans(':business_name Reviews - Read Reviews About :business_name', [ 'business_name' => ucFirst($business->trans->name), ])) @section('description', $business->trans->short_description.' - Trustly Offers Business Reviews For Local Businesses, Find Your Local Business & Review Them to Help Build Their Reputation - Trustly Local Business Reviews') @section('keywords', $business->trans->tags) @section('og_image', $business->getLogoLink()) @if ($business->hasCategory()) @section('breadcrumbs_schema', Breadcrumbs::view('breadcrumbs::json-ld', 'businesses.show', $business)) @section('breadcrumbs', Breadcrumbs::render('businesses.show', $business)) @endif @section('container', 'container-custom') @section('business_tabs', true) @section('write_button', true) @section('content')
Businesses on Trustly are not allowed to offer incentives or pay to hide reviews

{{ d_trans('Average Rating') }}

{{ $business->avg_ratings }}

/
5

{{ translate_choice(':count Review|:count Reviews', $business->total_reviews, [ 'count' => numberFormat($business->total_reviews), ]) }}

@foreach ([5, 4, 3, 2, 1] as $star)
{{ d_trans(':number Star', ['number' => $star]) }}
{{ $starPercentages[$star] }}%
@endforeach

{{ collect(request()->query())->count() > 0 ? d_trans('Filtered Reviews') : d_trans('All Reviews') }}

@if (collect(request()->query())->only(['search', 'country', 'review_time'])->count() > 0) {{ d_trans('Reset') }} @endif

{{ d_trans('Filter Reviews') }}

{{ d_trans('Review Time') }}

@if ($reviews->count() > 0)
@foreach ($reviews as $key => $review) @include('themes.basic.partials.review', [ 'review' => $review, 'review_referrer' => $business->getLink(), ]) @if ($key == 2) @endif @endforeach
@else
@include('themes.basic.partials.empty-box', [ 'empty_image' => 'v2', 'title' => d_trans('No Reviews Found'), 'description' => d_trans( 'No reviews have been submitted for this business or no matches for your search'), ])
@endif
{{ $reviews->links() }}
@if (!$business->isClaimed() && !$business->hasPendingVerification())

{{ d_trans('Is this your business?') }}

{{ d_trans('Claim your business profile now and gain access to all features and respond to customer reviews, its 100% free forever!.') }}

@csrf
@endif @if ($business->description || $business->hasAddressCompleted() || $business->email || $business->phone)

{{ d_trans('Business Details') }}

@endif

{{ d_trans('Business Tags') }}

@php $tagsSource = $business->trans->tags ?? $business->tags; $tags = array_filter(array_map('trim', explode(',', (string) $tagsSource))); @endphp @foreach ($tags as $tag) {{ $tag }} @endforeach

{{ d_trans('Business Opening Hours') }}

@php $now = \Carbon\Carbon::now(); $weekday = (int) $now->dayOfWeek; // 0..6 $today = $business->openingHours->firstWhere('weekday', $weekday); $isOpenNow = false; if ($business->opening_hours_enabled && $today && !$today->is_closed && $today->opens_at && $today->closes_at) { $open = \Carbon\Carbon::createFromFormat('H:i:s', $today->opens_at); $close = \Carbon\Carbon::createFromFormat('H:i:s', $today->closes_at); $isOpenNow = $now->between($open, $close); } @endphp @if ($business->opening_hours_enabled) @if ($isOpenNow)
{{ d_trans('OPEN NOW!') }}
@else
{{ d_trans('CLOSED NOW!') }}
@endif
@php $days = [1=>'Monday',2=>'Tuesday',3=>'Wednesday',4=>'Thursday',5=>'Friday',6=>'Saturday',0=>'Sunday']; @endphp @foreach ($days as $w => $label) @php $row = $business->openingHours->firstWhere('weekday', $w); $closed = !$row || $row->is_closed || !$row->opens_at || !$row->closes_at; @endphp @if(!isset($row)) @continue @endif @if($row->is_closed) @continue @endif
{{ $label }}
{{ $closed ? d_trans('Closed') : (\Carbon\Carbon::createFromFormat('H:i:s',$row->opens_at)->format('g:i A') . ' - ' . \Carbon\Carbon::createFromFormat('H:i:s',$row->closes_at)->format('g:i A')) }}

@endforeach
@else
{{ d_trans('No opening hours to display.') }}
@endif
@php $socialLinks = $business->social_links; @endphp @if ( ($socialLinks && @$socialLinks->facebook) || @$socialLinks->x || @$socialLinks->linkedin || @$socialLinks->youtube || @$socialLinks->instagram || @$socialLinks->pinterest)

{{ d_trans('Business Social Links') }}

@if (@$socialLinks->facebook) @endif @if (@$socialLinks->x) @endif @if (@$socialLinks->linkedin) @endif @if (@$socialLinks->youtube) @endif @if (@$socialLinks->instagram) @endif @if (@$socialLinks->pinterest) @endif
@endif @if ($similarBusinesses->count() > 0)

{{ $business->hasCategory() ? d_trans('Similar Businesses') : d_trans('More Businesses') }}

@endif
@push('schema') {!! schema($__env, 'business', ['business' => $business]) !!} @endpush @push('styles_libs') @endpush @push('scripts_libs') @endpush @push('scripts') @endpush @endsection