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

use Coevering\Facades\MenuService;

class ProductsController extends BaseController
{
    public function __construct()
    {
        parent::__construct();

        $this->pageSlug = 'products';

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

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

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

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

    public function twoKMolds()
    {
        return $this->renderSubPage('2kMolds');
    }

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

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