1 | <?php namespace Arcanesoft\Auth\ViewComposers\Dashboard; |
||
13 | class OnlineUsersCountComposer extends ViewComposer |
||
14 | { |
||
15 | /* ------------------------------------------------------------------------------------------------ |
||
16 | | Constants |
||
17 | | ------------------------------------------------------------------------------------------------ |
||
18 | */ |
||
19 | const VIEW = 'auth::foundation._composers.dashboard.online-users-count-box'; |
||
20 | |||
21 | /* ------------------------------------------------------------------------------------------------ |
||
22 | | Main Functions |
||
23 | | ------------------------------------------------------------------------------------------------ |
||
24 | */ |
||
25 | /** |
||
26 | * Compose the view. |
||
27 | * |
||
28 | * @param \Illuminate\Contracts\View\View $view |
||
29 | */ |
||
30 | public function compose(View $view) |
||
43 | } |
||
44 |