Update 2022-03-07

This commit is contained in:
2022-03-07 09:59:51 -03:00
committed by Juan Pablo Vial
parent f85f9ff3c9
commit 8ed1742de8
8 changed files with 110 additions and 18 deletions

15
setup/setups/04_ui.php Normal file
View 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')
]
);
}
];