13 lines
216 B
PHP
13 lines
216 B
PHP
<?php
|
|
|
|
namespace App\View\Components\Modules;
|
|
|
|
use App\View\Components\Modules\Items as Component;
|
|
|
|
class Banners extends Component
|
|
{
|
|
public $type = 'banners';
|
|
|
|
public $view = 'components.modules.banners';
|
|
}
|