| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 1.0008 |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | 59 | protected function initBreadcrumbs() |
|
| 18 | { |
||
| 19 | View::composer('jarboe::crud.list', function ($view) { |
||
| 20 | 1 | $view->with('breadcrumbs', $this->breadcrumbs()); |
|
| 21 | 59 | }); |
|
| 22 | View::composer('jarboe::crud.create', function ($view) { |
||
| 23 | 1 | $view->with('breadcrumbs', $this->breadcrumbs()); |
|
| 24 | 59 | }); |
|
| 25 | View::composer('jarboe::crud.edit', function ($view) { |
||
| 26 | 1 | $view->with('breadcrumbs', $this->breadcrumbs()); |
|
| 27 | 59 | }); |
|
| 28 | View::composer('jarboe::crud.history', function ($view) { |
||
| 29 | $view->with('breadcrumbs', $this->breadcrumbs()); |
||
| 30 | 59 | }); |
|
| 31 | 59 | } |
|
| 32 | } |
||
| 33 |