diff --git a/.editorconfig b/.editorconfig index cd8eb86efa..32de2af6aa 100644 --- a/.editorconfig +++ b/.editorconfig @@ -11,5 +11,8 @@ end_of_line = lf insert_final_newline = true trim_trailing_whitespace = true +[*.blade.php] +indent_size = 2 + [*.md] trim_trailing_whitespace = false diff --git a/config/websockets.php b/config/websockets.php index 1c9f61f2f7..13aac01bc9 100644 --- a/config/websockets.php +++ b/config/websockets.php @@ -191,9 +191,13 @@ | store them into an array and then store them into the database | on each interval. | + | You can opt-in to avoid any statistics storage by setting the logger + | to the built-in NullLogger. + | */ - 'logger' => BeyondCode\LaravelWebSockets\Statistics\Logger\HttpStatisticsLogger::class, + 'logger' => \BeyondCode\LaravelWebSockets\Statistics\Logger\HttpStatisticsLogger::class, + // 'logger' => \BeyondCode\LaravelWebSockets\Statistics\Logger\NullStatisticsLogger::class, /* |-------------------------------------------------------------------------- diff --git a/resources/views/dashboard.blade.php b/resources/views/dashboard.blade.php index e4a761b905..33a69b17c1 100644 --- a/resources/views/dashboard.blade.php +++ b/resources/views/dashboard.blade.php @@ -1,265 +1,423 @@
- -| Type | -Details | -Time | -
|---|---|---|
| @{{ log.type }} | -@{{ log.details }} |
- @{{ log.time }} | -
| + Type + | ++ Details + | ++ Time + | +
|---|---|---|
|
+
+ @{{ log.type }}
+
+ |
+
+ @{{ log.details }}
+ |
+ + @{{ log.time }} + | +