Files
money/ui/setup/web/setups.php

17 lines
343 B
PHP
Raw Normal View History

2021-03-18 23:25:35 -03:00
<?php
use Psr\Container\ContainerInterface as Container;
return [
Slim\Views\Blade::class => function(Container $c) {
return new Slim\Views\Blade(
$c->get('locations')->templates,
$c->get('locations')->cache,
null,
[
'urls' => $c->get('urls'),
'format' => $c->get('format')
]
);
}
];