Add and fix heading IDs (#232)

This commit is contained in:
lukinovec 2023-01-06 15:34:04 +01:00 committed by GitHub
parent 8029bdc51c
commit ca5924646d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 17 additions and 17 deletions

View file

@ -10,7 +10,7 @@ section: content
Laravel Sanctum works with Tenancy out of the box, with the exception of the `sanctum.csrf-cookie` route. You can make some small changes to make the route work.
### Making the csrf-cookie route work in the tenant app
### Making the csrf-cookie route work in the tenant app {#csrf-cookie-route-in-tenant-app}
To make the `sanctum.csrf-cookie` route work in the tenant app, do the following:
@ -29,7 +29,7 @@ Route::group(['prefix' => config('sanctum.prefix', 'sanctum')], static function
});
```
### Making the csrf-cookie route work both in the central and the tenant app
### Making the csrf-cookie route work both in the central and the tenant app {#csrf-cookie-route-in-both-apps}
To use the `sanctum.csrf-cookie` route in both the central and the tenant apps: