laravel / pulse

Laravel Pulse is a real-time application performance monitoring tool and dashboard for your Laravel application.
https://pulse.laravel.com
MIT License
1.44k stars 165 forks source link

Undefined array key "lazy" - on pulse dashboard #239

Closed ssmavask closed 10 months ago

ssmavask commented 10 months ago

Pulse Version

1.0.0

Laravel Version

10.37.3

PHP Version

8.3.0

Livewire Version

3.0.0

Database Driver & Version

MySql 8.0.30

Description

right after installing an opening pulse dashboard i got this error Undefined array key "lazy". Screenshot (35) Screenshot (36)

Steps To Reproduce

this is a fresh install of Laravel pulse and i am getting this issue right on the dashboard of pulse without any modifications. currently this error happed on private repositor but if require i can provide the access or code for debugging.

ssmavask commented 10 months ago

this is my current composer.json { "name": "laravel/laravel", "type": "project", "description": "The skeleton application for the Laravel framework.", "keywords": [ "laravel", "framework" ], "license": "MIT", "require": { "php": "^8.2", "guzzlehttp/guzzle": "*", "ixudra/curl": "^6.22", "laravel/framework": "^10.10", "laravel/jetstream": "^3.2", "laravel/pulse": "^1.0@beta", "laravel/sanctum": "^3.2", "laravel/tinker": "^2.8", "livewire/livewire": "3.0", "spatie/laravel-medialibrary": "10.10.1" }, "require-dev": { "barryvdh/laravel-debugbar": "^3.8", "barryvdh/laravel-ide-helper": "^2.13", "enlightn/enlightn": "^2.6", "fakerphp/faker": "^1.9.1", "laravel/pint": "^1.0", "laravel/sail": "^1.18", "mockery/mockery": "^1.4.4", "nunomaduro/collision": "^7.0", "pestphp/pest": "^2.0", "pestphp/pest-plugin-laravel": "^2.0", "spatie/laravel-ignition": "^2.0" }, "autoload": { "psr-4": { "App\": "app/", "Database\Factories\": "database/factories/", "Database\Seeders\": "database/seeders/" } }, "autoload-dev": { "psr-4": { "Tests\": "tests/" } }, "scripts": { "post-autoload-dump": [ "Illuminate\Foundation\ComposerScripts::postAutoloadDump", "@php artisan package:discover --ansi" ], "post-update-cmd": [ "@php artisan vendor:publish --tag=laravel-assets --ansi --force" ], "post-root-package-install": [ "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" ], "post-create-project-cmd": [ "@php artisan key:generate --ansi" ] }, "extra": { "laravel": { "dont-discover": [] } }, "config": { "optimize-autoloader": true, "preferred-install": "dist", "sort-packages": true, "allow-plugins": { "pestphp/pest-plugin": true, "php-http/discovery": true } }, "minimum-stability": "beta", "prefer-stable": true }

jessarcher commented 10 months ago

Looks like you need to upgrade your Livewire version

ssmavask commented 10 months ago

thanks i figured I was missing ^ in the version definition so i updated it to "livewire/livewire": "^3.0", after which i running composer update and it then updated my livewire and pulse also and it fixed my problem. 😊

timacdonald commented 10 months ago

Pulse now explicitly requires Livewire version ^3.2, so this should be resolved in the later versions of Pulse.