Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
15 | public function boot() |
||
16 | { |
||
17 | // View |
||
18 | $this->app['view']->addNamespace('Admin', base_path() . '/resources/views/Admin'); |
||
19 | $this->app['view']->addNamespace('Blog', base_path() . '/resources/views/Blog'); |
||
20 | |||
21 | // Pagination |
||
22 | Paginator::defaultView('vendor.pagination.bootstrap-4'); |
||
23 | } |
||
24 | |||
35 |