Laravel Telescope is an elegant debug assistant for the Laravel framework,
Telescope provide logs of incoming requests into your application, exceptions, log entries, database queries, queued jobs, mail, notifications, cache operations, scheduled tasks, variable dumps
composer require laravel/telescope
php artisan vendor:publish --tag=telescope-migrations
if you have fresh laravel project then migrate like this
php artisan migrate
Otherwise you should try this specific migrate like this
php artisan migrate --path=/database/migrations/2018_08_08_100000_create_telescope_entries_table.php
php artisan migrate:refresh --path=/database/migrations/2018_08_08_100000_create_telescope_entries_table.php
After setup all of that Goto below URL
http://127.0.0.1:8000/telescope/
Keep Learning………… Keep Coding……..