@extends('front') @section('content')
..
Company Logo
@if($highestRatedProduct) @php $avg = (float) $highestRatedProduct->average_rating; $full = floor($avg); $half = ($avg - $full) >= 0.5; @endphp @for($i=0;$i<5;$i++) @if($i < $full) @elseif($i === $full && $half) @else @endif @endfor {{ number_format($avg, 1) }} ({{ $highestRatedProduct->rating_count ?? 0 }} reviews) @else 0.0 (0 review) @endif
{{ getSetting('company_name') ?? 'Nossa Empresa' }}

{{ __('Serviços Profissionais') }}

{{ __('Atendimento Corporativo') }}

{{ __('Email') }}

{{ getSetting('site_email') ?? '-' }}

{{ __('Contato') }}

{{ getSetting('phone_no') ?? '-' }}

{{ __('Website') }}

{{ url('/') }}

{{ __('Address') }}

{{ getSetting('site_address') ?? '-' }}

{{__('Our Services')}}
@if (!empty($products) && count($products) > 0) @else

{{ __('No services available') }}

@endif
{{__('Our Branches')}}

{{__('Location')}}

@if($mapHasError)
{{ __('Unable to load the map. Please check the location or contact support.') }}
@else
@endif
@endsection