Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php namespace Arcanesoft\Seo\Http\Controllers\Front; |
||
18 | public function show(Footer $footer) |
||
19 | { |
||
20 | $footer->load(['seo']); |
||
21 | |||
22 | $this->setTitle($footer->seo->title); |
||
23 | $this->addBreadcrumb($footer->seo->title); |
||
24 | |||
25 | return $this->view('seo::public.footer-page', compact('footer')); |
||
26 | } |
||
27 | } |
||
28 |