Files
oficial/setup/setups/04_ui.php
2022-03-07 10:09:15 -03:00

16 lines
310 B
PHP

<?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')
]
);
}
];