| Conditions | 3 |
| Paths | 3 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | public function __construct() |
||
| 14 | { |
||
| 15 | $this->requestUrl = request()->getRequestUri(); |
||
| 16 | $this->seo = Seo::where('slug', $this->requestUrl)->first(); |
||
| 17 | if (! $this->seo) { |
||
| 18 | $metaBox = app()->make('laravel-seo-meta-box')->getObjectOnPage(); |
||
| 19 | if ($metaBox) { |
||
| 20 | $this->seo = Seo::where('type', $metaBox['type'])->where('object_id', $metaBox['id'])->first(); |
||
| 21 | } |
||
| 45 |