HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/medvalue.komma.pro/resources/views/site/pages/contact.blade.php
@extends('site.master')

@section('title', $page->translation->meta_title)
@section('meta_description', $page->translation->meta_description)

@section('content')

    <div class="contact-content">
        <div class="grid-row">

            <div class="contact-info grid-col">

                <h1>{{$page->translation->name}}</h1>

                <p>
                    <strong>@lang('site/contact.visitAddress')</strong><br/>
                    {!! \Config::get('site.company.visitAddress') !!}<br/>
                    <br/>
                    <a href="mailto:{{ \Config::get('site.company.email') }}">{{ \Config::get('site.company.email') }}</a><br/>
                    <a href="tel:{{ \Config::get('site.company.phone.call') }}">{{ \Config::get('site.company.phone.display') }}</a><br/>
                    <br/>
                    <strong>{{ \Config::get('site.company.name') }}</strong><br/>
                    {{ \Config::get('site.company.address') }}<br/>
                    {{ \Config::get('site.company.zip') }} {{ \Config::get('site.company.city') }}<br/>
                    {{ \Config::get('site.company.country') }}<br/>
                </p>

                <figure>
                    <img alt="entrance Radbouw " src="/img/contact/hoofdingang_radboud.jpg"/>
                </figure>

                {{--<h3>@lang('site/contact.openingHours')</h3>--}}

                {{--<ul class="opening-hours">--}}
                    {{--@for($i=1; $i<=7;$i++)--}}
                        {{--<li @if(\Carbon\Carbon::now()->dayOfWeek == ($i)) class="active" @endif>--}}
                            {{--<span class="day">@lang('calendar.dayNames.'.$i)</span>--}}
                            {{--<span class="hour">--}}
                            {{--@if(Config::get('site.company.opening_hours.'.($i - 1)) != null)--}}
                                    {{--{{ Config::get('site.company.opening_hours.'.($i - 1)) }}--}}
                                {{--@else--}}
                                    {{--@lang('site/contact.closed')--}}
                                {{--@endif--}}
                        {{--</span>--}}
                        {{--</li>--}}
                    {{--@endfor--}}
                {{--</ul>--}}

            </div>


            <div class="contact-form">
                <h2>@lang('site/contact.contactForm')</h2>
                {{-- Form --}}
                @include('site.forms.contact')
            </div>

        </div>

    </div>

    {{-- Google Maps - Simple setup through mapsHandler --}}
    <div id="map"
         @if(\Config::has('site.company.googleMaps.lat') && \Config::get('site.company.googleMaps.lat') !== '') data-google-lat="{{\Config::get('site.company.googleMaps.lat')}}"
         @endif
         @if(\Config::has('site.company.googleMaps.lng') && \Config::get('site.company.googleMaps.lng') !== '') data-google-lng="{{\Config::get('site.company.googleMaps.lng')}}" @endif
    ></div>

    @include('site.partials.blocks.ctaRow', [
        'ctaTrigger1' => (object)[
            'title' => trans('site/global.ctaRow.title'),
            'subTitle' => trans('site/global.ctaRow.subTitle'),
            'button' => (object)[
                'link' => "/".$links->contact->route,
                'text' => trans('site/home.contactUs'),
            ],
        ],

        'ctaPerson' => (object)[
            'image' => '/img/contact-person.jpg',
            'name' => trans('site/global.ctaRow.person'),
            'text' => trans('site/global.ctaRow.phoneTitle'),
            'button' => (object)[
              'link' => 'tel:' . \Config::get('site.company.phone.call'),
              'text' => \Config::get('site.company.phone.display')
            ]
        ],
    ])

@endsection