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/SBogers33/broosensterck.nl/workbench/komma/kms/src/views/section/index.blade.php
@extends('kms::layouts.kms')

@section('content')

    @if($section->getSlug() == 'website-config')
        <div id="entity" class="entity full-width no-tabs">
            @include('kms::partials.entity.index', [
                'slug' => $section->getSlug(),
                'id' => $section->getEntityId(),
                'title' => $section->getTitle().' '.$section->getSubTitle()
            ])
        </div>
    @else
        <div id="entities" class="entities" ng-controller="KmsEntities">
            @include($section->getListView(), [
                'slug' => $section->getSlug(),
                'id' => $section->getEntityId(),
                'title' => $section->getTitle(),
                'subTitle' => $section->getSubTitle(),
                'entities' => $section->getEntities()
            ])
        </div>

        {{-- Fix maken om te bepalen wanneer deze section wordt getoont --}}
        @if ($section->showEntity)
            <div id="entity" class="entity">
                @include($section->getView(), [
                    'slug' => $section->getSlug(),
                    'id' => $section->getEntityId(),
                    'title' => $section->getEntityTitle()
                ])
            </div>
        @endif
    @endif

@stop