rickselby/laravel-exception-html
最新稳定版本:0.4.0
Composer 安装命令:
composer require rickselby/laravel-exception-html
包简介
Generate HTML output for an exception
关键字:
README 文档
README
When Symfony updated to version 5, they changed their exception handling, and this removed a very neat way of generating HTML for an exception to populate an email:
$handler = new ExceptionHandler(true); $html = $handler->getHtml($this->exception);
This is a copy of the Symfony 4 code to allow the above snippet to work again.
Additional HTML
You may pass some additional HTML heading tags to display in the main title block. This can be any additional information useful to your exception (e.g. request URL, logged in user...)
<h3 class="exception-message">{$this->request->method()} {$this->request->fullUrl()}</h3>
$handler = new ExceptionHandler(true); $html = $handler->getHtml($this->exception, $extraHeadings);
统计信息
- 总下载量: 1.53k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-10-17