Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function __construct($name, Model $model) |
||
15 | { |
||
16 | if (in_array('Giuga\LaravelSeoMetaBox\Traits\HasSeo', class_uses(get_class($model)))) { |
||
17 | parent::__construct($name, [ |
||
18 | Text::make('Title', 'seo.title')->hideFromIndex(), |
||
19 | Textarea::make('Description', 'seo.description')->hideFromIndex(), |
||
20 | ]); |
||
21 | } |
||
22 | } |
||
23 | } |
||
24 |