Ale Gallo
b91cf0cbde
committing part of the laravel system with templating files and api implementation.
19 lines
353 B
PHP
19 lines
353 B
PHP
<?php
|
|
|
|
namespace App\View\Composers;
|
|
|
|
use Illuminate\View\View;
|
|
|
|
class ColorSchemeComposer
|
|
{
|
|
/**
|
|
* Bind color scheme value to the view.
|
|
*/
|
|
public function compose(View $view): void
|
|
{
|
|
$view->with(
|
|
'colorScheme',
|
|
session()->has('color_scheme') ? session('color_scheme') : "default"
|
|
);
|
|
}
|
|
}
|