Skip to content

Commit a89e514

Browse files
authored
[12.x] Use full path to Str in exception markdown (#56705)
Otherwise showing an exception will fail with an exception, if the facade could not be found. This error might have been introduced in v12.25.0
1 parent c6e9e71 commit a89e514

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Illuminate/Foundation/resources/exceptions/renderer/markdown.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
## Request
1515

16-
{{ $exception->request()->method() }} {{ Str::start($exception->request()->path(), '/') }}
16+
{{ $exception->request()->method() }} {{ \Illuminate\Support\Str::start($exception->request()->path(), '/') }}
1717

1818
## Headers
1919

0 commit comments

Comments
 (0)