1 | <?php namespace Modules\Blog\Composers\Frontend; |
||
7 | class LatestPostsComposer |
||
8 | { |
||
9 | /** |
||
10 | * @var PostRepository |
||
11 | */ |
||
12 | private $post; |
||
13 | /** |
||
14 | * @var Setting |
||
15 | */ |
||
16 | private $setting; |
||
17 | |||
18 | public function __construct(PostRepository $post, Setting $setting) |
||
23 | |||
24 | public function compose(View $view) |
||
30 | } |
||
31 |