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');
}
}