Laravel 调试工具 - Telescope

2022-12-31 15:26:00 浏览数 (1)

Laravel Telescope 是Laravel框架的一个优雅的调试助手。Telescope 提供对进入应用程序的请求、异常、日志条目、数据库查询、排队作业、邮件、通知、缓存操作、计划任务、变量转储等的洞察。Telescope 是您本地Laravel开发环境的绝佳伴侣。

安装

代码语言:javascript复制
#仅本地安装,不推荐用在生产环境
composer require laravel/telescope --dev
php artisan telescope:install
php artisan migrate

访问仪表盘

http://laravel.cw.net/telescope

参考

https://laravel.com/docs/9.x/telescope

0 人点赞