{{-- home-section4 --}}
{{-- rating-btn-description --}} @include('shared.commons.rating-btn-description', [ 'rating' => $resto_total_ratings_votes, 'url_comments' => comment_url(), ])
@if(isset($google_reviews) && count($google_reviews) > 0) @foreach($google_reviews as $review) @include('shared.template1.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.template1.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
{{-- cites--}} @if(count($_restaurant->branches) == 1)

{{ is_only_pickup($_branch) ? trans('trans.opening_hours') : (count($_branch->opening_hours) ? trans('trans.delivery_hours') : trans('trans.delivery_hours_openning')) }}

@include('shared.commons.delivery-hours')
@endif
{{-- delivery-hours--}}