Add debugging statement to report exceptions in

development environment
This commit is contained in:
Andras Bacsai 2023-11-13 21:17:17 +01:00
parent 776b1cb68d
commit c4d9deabef

View File

@ -55,6 +55,7 @@ class Handler extends ExceptionHandler
{
$this->reportable(function (Throwable $e) {
if (isDev()) {
ray($e);
return;
}
$this->settings = InstanceSettings::get();