1 | <?php namespace Arcanedev\LaravelSeo\Models\Presenters; |
||
17 | trait MetaPresenter |
||
18 | { |
||
19 | /* ----------------------------------------------------------------- |
||
20 | | Accessors |
||
21 | | ----------------------------------------------------------------- |
||
22 | */ |
||
23 | |||
24 | /** |
||
25 | * Get the `title_length` attribute. |
||
26 | * |
||
27 | * @return int |
||
28 | */ |
||
29 | 2 | public function getTitleLengthAttribute() |
|
33 | |||
34 | /** |
||
35 | * Get the `description_length` attribute. |
||
36 | * |
||
37 | * @return int |
||
38 | */ |
||
39 | 2 | public function getDescriptionLengthAttribute() |
|
43 | |||
44 | /** |
||
45 | * Get the `keywords_string` attribute. |
||
46 | * |
||
47 | * @return string |
||
48 | */ |
||
49 | 2 | public function getKeywordsStringAttribute() |
|
53 | |||
54 | /** |
||
55 | * Get the `keywords_length` attribute. |
||
56 | * |
||
57 | * @return int |
||
58 | */ |
||
59 | 2 | public function getKeywordsLengthAttribute() |
|
63 | } |
||
64 |