1 | <?php namespace Arcanesoft\Blog\Models\Presenters; |
||
9 | trait PostPresenter |
||
10 | { |
||
11 | // TODO: Add the accessors |
||
12 | |||
13 | /* ----------------------------------------------------------------- |
||
14 | | URL Accessors |
||
15 | | ----------------------------------------------------------------- |
||
16 | */ |
||
17 | |||
18 | /** |
||
19 | * Get the show URL. |
||
20 | * |
||
21 | * @return string |
||
22 | */ |
||
23 | public function getShowUrl() |
||
27 | |||
28 | /** |
||
29 | * Get the edit URL. |
||
30 | * |
||
31 | * @return string |
||
32 | */ |
||
33 | public function getEditUrl() |
||
37 | } |
||
38 |