@extends('public.layout') @section('title', ($city->meta_title ?: ('GiGi en ' . $city->name)) . ' | GiGi Food Partner') @section('meta_description', $city->meta_description ?: ('Solucion para restaurantes en ' . $city->name)) @section('content') @php $coverImage = null; if (is_string($city->cover_image) && $city->cover_image !== '') { $coverImage = preg_match('/^(https?:)?\/\//i', $city->cover_image) ? $city->cover_image : url($city->cover_image); } @endphp
@if ($coverImage)
{{ $city->cover_image_alt ?: $city->name }}
@endif {{ $city->name }}

{{ $city->home_title ?: ('GiGi para restaurantes en ' . $city->name) }}

{{ $city->hero_description ?: $city->home_description }}

{{ $city->home_kpi_value }}{{ $city->home_kpi_label }}
{{ $city->is_featured_home ? __('Yes') : __('No') }}{{ __('On home') }}
{{ $city->show_in_footer ? __('Yes') : __('No') }}{{ __('On footer') }}

{{ __('Key points') }}

    @forelse ($highlights as $highlight)
  • {{ $highlight }}
  • @empty
  • {{ __('Clearer local acquisition') }}
  • {{ __('Better commercial control') }}
  • {{ __('A base prepared to scale') }}
  • @endforelse
@endsection