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/topswtw.komma.pro/app/views/mobile/pages/default.blade.php
@extends('mobile.master')

@section('content')
    <div class="@if(isset($entity->parent) && $entity->parent->code_name == 'information') customer-service-sub @endif mobile-page">

        @if( isset($entity->parent) && $entity->parent->code_name != 'home')
            <div class="return-button">

                @if(isset($entity->parent))
                    <a href="/{{$entity->parent->route}}">
                        {{$entity->parent->name}}
                    </a>
                @endif

            </div>
        @endif

        <article class="text-block white {{$entity->code_name}}">
            <h1>{{ $entity->name }}</h1>

            {{ $entity->description }}

            @if(isset($entity->description_two) && $entity->description_two != '')
                {{ $entity->description_two }}
            @endif

            @if( ! empty($images))
                @foreach($images as $image)
                    <figure>
                        <img src="{{ $image->large_image_url }}" alt="{{ $entity->name }}"/>
                    </figure>
                @endforeach
            @endif

            @if( count($entity->children) != 0)
                <ul class="childeren-menu">
                    @foreach($entity->children as $child)
                        <li>
                            <a href="/{{$child->route}}">
                                {{$child->name}}
                            </a>
                        </li>
                    @endforeach
                </ul>
            @endif

            @if($entity->code_name == 'filterclasses')
                <a href="/images/static/filter-info/filter_info_{{Lang::getLocale()}}.jpg">
                    <img width="100%" style="margin-top: 20px;"
                         src="/images/static/filter-info/filter_info_{{Lang::getLocale()}}.jpg" alt="Filter info"
                         title="Filter info"/>
                </a>
            @endif

        </article>

        @if(isset($entity->parent) && $entity->parent->code_name == 'information')
            <div class="inline-menu gray no-sub">
                <h3>@lang('mobile.readMoreAbout')</h3>
                {{$menu}}
            </div>
        @endif


    </div>
@stop