Laravel telescope does not sure livewire requests or queries made by livewire components. How can I configure laravel telescope to show livewire database queries and requests.
You can simply remove livewire*
from the ignore_paths
which will start capturing the requests along with the queries.
Edit config/telescope.php
:
'ignore_paths' => [
// 'livewire*', 👈 remove or comment this out like this
'nova-api*',
'pulse*',
],
Then run:
php artisan config:clear