pipicar/modules/main/Components/Main.php

22 lines
446 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<?php
/*
* Copyright (c) 2023.
*
* Aidyn Sapargaliyev
* ТОО Дизайн лаборатория А7
*
*/
namespace App\Modules\main\Components;
use A7kz\Platform\Modules\Platform\Core\Services\Base\Component;
class Main extends Component
{
public function __construct(array $params = [], $module = 'Platform.Core')
{
parent::__construct($params, $module);
$this->template = 'pipicar::main.views.main';
}
}