79293950

Date: 2024-12-19 10:38:41
Score: 1
Natty:
Report link

Nowadays in laravel 11, you can implement this in your bootstrap/app.php to do the same job:

->withExceptions(function (Exceptions $exceptions) {
        $exceptions->context(fn() => [
            'url' => request()->fullUrl(),
        ]);
    })
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hussein Elturkey