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/controllers/ServicesController.php
<?php

use Coevering\Facades\MenuService;

class ServicesController extends BaseController
{

    public function __construct()
    {
        parent::__construct();

        $this->pageSlug = 'services';

        View::share('submenu', MenuService::getServices());
    }

    public function projectDevelopment()
    {
        return $this->renderSubPage('projectDevelopment');
    }

    public function projectManagement()
    {
        return $this->renderSubPage('projectManagement');
    }

    public function moldDesign()
    {
        return $this->renderSubPage('moldDesign');
    }

    public function production()
    {
        return $this->renderSubPage('production');
    }

    public function threeDimensionalLaserCutters()
    {
        $youtube = 'S7twOgyahv8';

        $pageTitle = \Lang::get('app/pageTitles.threeDimensionalLaserCutters') . ' | ' . \Lang::get('app/pageTitles.' . $this->pageSlug) . ' | ' . $this->mainTitle;

        return View::make('layouts.pages.subPageTemplate')
            ->with([
                'pageSlug' => $this->pageSlug,
                'subSlug' => 'threeDimensionalLaserCutters',
                'pageTitle' => $pageTitle,
                'youtube' => $youtube
            ]);
    }

    public function polish()
    {
        return $this->renderSubPage('polish');
    }

    public function repairAndMaintenance()
    {
        return $this->renderSubPage('repairAndMaintenance');
    }
}