@extends('dashboard.app') @section('content')

Show Contact

Create
@if (count($contact) > 0)
@foreach ($contact as $index => $item) {{-- --}} @endforeach
# City Address Phone Whatsapp Email Settings
{{ $index + 1 }} @foreach (Helper::getLangs() as $local) {{ $item->getTranslation('city', $local) }}
@endforeach
@foreach (Helper::getLangs() as $local) {{ $item->getTranslation('address', $local) }}
@endforeach
{{ $item->phone }} {{ $item->whatsapp }} {{ $item->email }} @if ($item->image) Image @else No Image @endif
@else

Not Found any Sections..

@endif
@endsection