{{-- home-section3 --}}
{{-- section btns apps for all templates --}} @include('shared.sections.home-section-apps')
{{ trans((isset($google_reviews) && count($google_reviews) > 0) ? 'home.google_reviews' : 'home.tasty_reviews') }}
{{ round($resto_total_ratings_votes, 1) }} @include('shared.ratings', ['rating' => $resto_total_ratings_votes])
@if(isset($google_reviews) && count($google_reviews) > 0) @foreach($google_reviews as $review) @include('shared.template3.item-home-comment', [ 'username' => $review->author_name, 'user_photo' => $review->profile_photo_url, 'votes' => $review->rating, 'date' => $review->time->format('d/m/Y'), 'comment_text' => $review->text, 'is_google' => true ]) @endforeach @elseif(count($branch_votes) > 0) @foreach($branch_votes as $branch_vote) @include('shared.template3.item-home-comment', [ 'username' => $branch_vote->name ?? '', 'user_photo' => asset('img').'/user.png', 'votes' => $branch_vote->votes, 'date' => $branch_vote->times->format('d/m/Y'), 'comment_text' => $branch_vote->comment ]) @endforeach @endif
@include('shared.commons.container-map', ['id' => count($_restaurant->branches) == 1 ? $_branch->id : 'main', 'class' => '', 'is_map_home' => true])