Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | public function boot() |
||
29 | { |
||
30 | $this->app['blade.compiler']->extend(function ($view) { |
||
31 | return $this->app[TagHelperCompiler::class]->compile($view); |
||
32 | }); |
||
33 | |||
34 | $this->app['tag-helper']->helper(LinkHelper::class); |
||
35 | $this->app['tag-helper']->helper(FormMethodHelper::class); |
||
36 | $this->app['tag-helper']->helper(CsrfHelper::class); |
||
37 | $this->app['tag-helper']->helper(ConditionHelper::class); |
||
38 | $this->app['tag-helper']->helper(AuthHelper::class); |
||
39 | $this->app['tag-helper']->helper(GuestHelper::class); |
||
40 | } |
||
41 | } |
||
42 |