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.43k stars 165 forks source link

Dashboard with empty screen #352

Closed yurih567 closed 6 months ago

yurih567 commented 6 months ago

Pulse Version

v1.0.0-beta16

Laravel Version

v11.2.0

PHP Version

8.2.17

Livewire Version

v3.4.10

Database Driver & Version

MySQL 8.0.32

Description

After installing the lib, when trying to access the dashboard, only an empty page is returned

image

Steps To Reproduce

Run the following commands:

composer require laravel/pulse php artisan vendor:publish --provider="Laravel\Pulse\PulseServiceProvider" php artisan migrate

jbrooksuk commented 6 months ago

Does your application have any custom configurations for Blade? It looks like only the raw Blade is being returned rather than the compiled HTML.

yurih567 commented 6 months ago

Does your application have any custom configurations for Blade? It looks like only the raw Blade is being returned rather than the compiled HTML.

I'm using Blade::withoutComponentTags();, removing this and clearing the view cache worked. thanks