laravel-websockets/src/Http/Controllers/ShowDashboard.php

16 lines
368 B
PHP
Raw Normal View History

2018-11-23 23:06:28 +00:00
<?php
namespace BeyondCode\LaravelWebsockets\Http\Controllers;
use Illuminate\Http\Request;
2018-11-24 22:52:55 +00:00
use BeyondCode\LaravelWebSockets\ClientProviders\ClientProvider;
2018-11-23 23:06:28 +00:00
2018-11-26 00:01:18 +00:00
class ShowDashboard
2018-11-23 23:06:28 +00:00
{
2018-11-24 22:52:55 +00:00
public function __invoke(Request $request, ClientProvider $clients)
2018-11-23 23:06:28 +00:00
{
2018-11-26 00:01:18 +00:00
return view('websockets::dashboard', [
2018-11-26 08:03:04 +00:00
'clients' => $clients->all(),
2018-11-24 22:52:55 +00:00
]);
2018-11-23 23:06:28 +00:00
}
}