1
0
forked from metin2/web
web/app/View/Composers/ThemeComposer.php

18 lines
277 B
PHP
Raw Permalink Normal View History

<?php
namespace App\View\Composers;
use Illuminate\View\View;
class ThemeComposer
{
/**
* Bind data to the view.
*/
public function compose(View $view): void
{
$view->with('theme', 'classic');
$view->with('subTheme', 'normal');
}
}