File: D:/HostingSpaces/SBogers14/coeveringmatrijzen.nl/app/controllers/MachineryController.php
<?php
use Coevering\Facades\MenuService;
class MachineryController extends BaseController
{
public function __construct()
{
parent::__construct();
$this->pageSlug = 'machinery';
View::share('submenu', MenuService::getMachinery());
}
public function milling()
{
return $this->renderSubPage('milling');
}
public function lathing()
{
return $this->renderSubPage('lathing');
}
public function deepHoleDrilling()
{
return $this->renderSubPage('deepHoleDrilling');
}
public function grinding()
{
return $this->renderSubPage('grinding');
}
public function zincSparkErosion()
{
return $this->renderSubPage('zincSparkErosion');
}
public function wireSparkErosion()
{
return $this->renderSubPage('wireSparkErosion');
}
public function laserMilling()
{
return $this->renderSubPage('laserMilling');
}
public function cadCam()
{
return $this->renderSubPage('cadCam');
}
public function other()
{
return $this->renderSubPage('other');
}
}