i have telescope in my Laravel setup, I forgot that I have it and forget to prune it daily. So it accumulated a huge data already it has 28million entries and it is taking 30GB worth of space.
I tried to use both php artisan telescope:clear
and php artisan telescope:prune
commands but I was having a timeout error because of the large dataset.
How can I clear Laravel Telescope?
You can first run
php artisan telescope:clear
and then optimize the telescope_entries tableoptimize table telescope_entries;
As you have lot of data it might take some time to process.