public function actionService($path)
 {
     $model = new Service();
     $service = $model->findByPath($path);
     if (!$service) {
         throw new HttpException('404', 'Страница услуги не найдена');
     }
     $this->layout = '//default';
     return $this->render('service', ['model' => $service]);
 }