Added older versions of the classic theme.

This commit is contained in:
2024-12-31 20:21:54 +02:00
parent 561ab7ea97
commit 744e55e385
16 changed files with 214 additions and 22 deletions

View File

@ -0,0 +1,17 @@
<?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');
}
}