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