Update 2022-03-07
This commit is contained in:
15
setup/setups/04_ui.php
Normal file
15
setup/setups/04_ui.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
use Psr\Container\ContainerInterface as Container;
|
||||
|
||||
return [
|
||||
Slim\Views\Blade::class => function(Container $c) {
|
||||
return new Slim\Views\Blade(
|
||||
$c->get('locations')->views,
|
||||
$c->get('locations')->cache,
|
||||
null,
|
||||
[
|
||||
'locations' => $c->get('locations')
|
||||
]
|
||||
);
|
||||
}
|
||||
];
|
Reference in New Issue
Block a user