Skip to content

Commit 05f1944

Browse files
authored
Header fixes (#9853)
1 parent 525c23b commit 05f1944

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

middleware.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ It's best to envision middleware as a series of "layers" HTTP requests must pass
6060
> **Note**
6161
> All middleware are resolved via the [service container](/docs/{{version}}/container), so you may type-hint any dependencies you need within a middleware's constructor.
6262
63-
<a name="before-after-middleware"></a>
6463
<a name="middleware-and-responses"></a>
6564
#### Middleware & Responses
6665

routing.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,6 @@ Typically, implicit model binding will not retrieve models that have been [soft
466466
return $user->email;
467467
})->withTrashed();
468468

469-
<a name="customizing-the-key"></a>
470469
<a name="customizing-the-default-key-name"></a>
471470
#### Customizing The Key
472471

session.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ The `pull` method will retrieve and delete an item from the session in a single
187187

188188
$value = $request->session()->pull('key', 'default');
189189

190-
<a name="#incrementing-and-decrementing-session-values"></a>
190+
<a name="incrementing-and-decrementing-session-values"></a>
191191
#### Incrementing & Decrementing Session Values
192192

193193
If your session data contains an integer you wish to increment or decrement, you may use the `increment` and `decrement` methods:

0 commit comments

Comments
 (0)