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

16 lines
352 B
PHP
Raw Normal View History

2018-11-23 23:06:28 +00:00
<?php
2018-11-26 08:55:06 +00:00
namespace BeyondCode\LaravelWebSockets\Dashboard\Http\Controllers;
2018-11-23 23:06:28 +00:00
use Illuminate\Http\Request;
2018-12-01 12:57:02 +00:00
use BeyondCode\LaravelWebSockets\Apps\AppProvider;
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-12-01 13:17:32 +00:00
public function __invoke(Request $request, AppProvider $apps)
2018-11-23 23:06:28 +00:00
{
2018-11-26 00:01:18 +00:00
return view('websockets::dashboard', [
2018-12-01 13:17:32 +00:00
'apps' => $apps->all(),
2018-11-24 22:52:55 +00:00
]);
2018-11-23 23:06:28 +00:00
}
}