| 1 | <?php |
||
| 10 | class CategoryPresenter extends Presenter |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Indented title against depth. |
||
| 14 | * |
||
| 15 | * @param int $pad |
||
| 16 | * @return string |
||
| 17 | */ |
||
| 18 | public function indentedTitle($pad = 1) |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Category's slug. |
||
| 25 | * |
||
| 26 | * @return string |
||
| 27 | */ |
||
| 28 | public function slug() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Get the nested alias on the category. |
||
| 35 | * |
||
| 36 | * @return string |
||
| 37 | */ |
||
| 38 | public function alias() |
||
| 47 | |||
| 48 | /** |
||
| 49 | * Display nested categories of the article. |
||
| 50 | * |
||
| 51 | * @return \Illuminate\Support\HtmlString |
||
| 52 | */ |
||
| 53 | public function slugList() |
||
| 64 | } |
||
| 65 |