| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | public function __invoke(Request $request, AppManager $apps) |
||
| 19 | { |
||
| 20 | return view('websockets::dashboard', [ |
||
| 21 | 'apps' => $apps->all(), |
||
| 22 | 'port' => config('websockets.dashboard.port', 6001), |
||
| 23 | 'channels' => DashboardLogger::$channels, |
||
| 24 | 'logPrefix' => DashboardLogger::LOG_CHANNEL_PREFIX, |
||
| 25 | 'refreshInterval' => config('websockets.statistics.interval_in_seconds'), |
||
| 26 | ]); |
||
| 29 |