Laravel View X-Ray
发布日期 作者 Paul Redmond
Laravel View X-Ray 是 Marcel Pociot 为 Laravel 5.6 开发的一个包,它使您能够查看 Laravel 视图并找出哪个模板与 HTML 输出的特定部分匹配。
安装包后,它在开发环境中默认启用,然后您可以按 Cmd + Shift + X
(Windows 上为 Ctrl + Shift + X
)。注意,在撰写本文时,View X-Ray 包 **依赖于 jQuery**。
结果是您视图的精美可视化表示,并且现在启用 X-Ray 后,您可以一目了然地了解视图层次结构。您可以通过再次按下快捷键或按 esc 键来隐藏 X-Ray UI。
您可以使用以下配置选项禁用 X-Ray 并排除视图
<?php return [ /* * Determines if the Xray package should be enabled. */ 'enabled' => env('XRAY_ENABLED', true), /* * If you want to exclude certain views from being processed by Xray, * you can list them here. Be aware that the check only applies to the * root views that you add here. If these views include other views * themselves, they need to be excluded manually. */ 'excluded' => [ // ], ];
了解更多
您可以在 Laravel 5.6 应用程序中使用以下 composer 命令安装 Laravel X-Ray
composer require beyondcode/laravel-view-xray --dev
您可以在 beyondcode/laravel-view-xray 上的 GitHub 仓库中了解更多信息。这是 Marcel Pociot 开发的另一个优秀的包,请务必 感谢他 对 Laravel 生态系统的贡献!