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