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/SBogers14/coeveringmatrijzen.nl/app/views/layouts/pages/sitemap.blade.php
@extends('layouts.master')

@section('content')

    <div class="column">
        <h1 class="title">Sitemap</h1>

        <ul>
            <li><a href="/" class="title">Home</a></li>
            <li><a href="/{{ $menuService->getRouteByController('CompanyController@index') }}" class="title">Bedrijfsprofiel</a></li>
            <li>
                <span class="title">Diensten</span>
                <ul>
                    @foreach(['projectDevelopment','projectManagement','stackMolds','moldDesign','production','threeDimensionalLaserCutters','polish','repairAndMaintenance'] as $service)
                        <li>
                            <a class="title" href="/{{ $menuService->getRouteByController('ServicesController@' . $service) }}">
                                {{ Lang::get('app/menus.' . $service) }}
                            </a>
                        </li>
                    @endforeach
                </ul>
            </li>
            <li>
                <span class="title">Producten</span>
                <ul>
                    @foreach(['general','preProductionMolds','productionMolds','stackMolds','twoKMolds','precisionMechanicalParts'] as $product)
                        <li>
                            <a class="title" href="/{{ $menuService->getRouteByController('ProductsController@' . $product) }}">
                                {{ Lang::get('app/menus.' . $product) }}
                            </a>
                        </li>
                    @endforeach
                </ul>
            </li>
            <li>
                <span class="title">Machinepark</span>
                <ul>
                    @foreach(['milling','lathing','deepHoleDrilling','grinding','zincSparkErosion','wireSparkErosion','laserMilling','cadCam','other'] as $machinery)
                        <li>
                            <a class="title" href="/{{ $menuService->getRouteByController('MachineryController@' . $machinery) }}">
                                {{ Lang::get('app/menus.' . $machinery) }}
                            </a>
                        </li>
                    @endforeach
                </ul>
            </li>
            <li>
                <span class="title">Fotogalerij</span>
                <ul>
                    @foreach(['preProductionMolds','productionMolds','stackMolds','twoKMolds','precisionMechanicalParts','machines'] as $gallery)
                        <li>
                            <a class="title" href="/{{ $menuService->getRouteByController('GalleryController@' . $gallery) }}">
                                {{ Lang::get('app/menus.' . $gallery) }}
                            </a>
                        </li>
                    @endforeach
                </ul>
            </li>

            <li><a href="/{{ $menuService->getRouteByController('ContactController@index') }}" class="title">Contact</a></li>


        </ul>
    </div>

{{--    @include('layouts.partials.ctaBlock')--}}

    <div class="clear"></div>

@stop