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/farmfun.komma.pro/resources/views/site/master.blade.php
@extends('site.base')

@section('base-content')

    @include('site.components.subHeader')
    @include('site.organisms.header')

    @include('site.organisms.header', ['isSticky' => true])
    @include('site.organisms.overlayMenu')

    @yield('content')

    @include('site.organisms.footer')

    @if(env('PAGETRANSITION'))
        <div class="pageTransitionOverlay"></div>
    @endif

    @if(isset($hasModal) && $hasModal)

        <div id="planModal"
             data-translations='@json(__('vue'))'

            @if($shoppingCart->getLocation() !== null) data-location="{{ $shoppingCart->getLocation()->id }}" @endif
            @if($shoppingCart->getDate() !== null) data-date="{{ $shoppingCart->getDate()->format('d-m-Y') }}" @endif
            >
            <plan-modal :product-id="activeProduct" :session-date="sessionDate" :session-location="sessionLocation" cart-route="{{ localized_route('shoppingCart') }}" offer-link="{{ $links->quotation->route }}" v-on:close="activeProduct = null"></plan-modal>
        </div>
    @endif

@endsection