-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Open
Description
- Laravel v9.44.0 (PHP v8.1.13)
- barryvdh/laravel-debugbar version - v3.7.0
How to reproduce
Modify the laravel example app by inserting the following lines anywhere into resources/views/welcome.blade.php
:
@php
$arr = [
'name' => 'John',
'age' => 30,
'cars' => [
'Ford',
'BMW',
'Toyota'
]
];
\Debugbar::log($arr);
throw new Exception('Error Processing Request', 1);
@endphp
Observed behavior
Expected behavior
With the throw new Exception('Error Processing Request', 1);
line removed / commented out:
Metadata
Metadata
Assignees
Labels
No labels