Documentation Index
Fetch the complete documentation index at: https://mintlify.com/estebansalas94/Prueba-Soporte/llms.txt
Use this file to discover all available pages before exploring further.
This endpoint requires a valid CSRF token. Requests without a matching CSRF token will be rejected with a
419 Page Expired response. Include the token as the X-XSRF-TOKEN header (read from the XSRF-TOKEN cookie) or as a _token field in the form body.Endpoint
auth — only accessible when the user is currently authenticated. Unauthenticated requests will be redirected to /login.
Request
Parameters
CSRF token read from the
XSRF-TOKEN cookie. Laravel sets this cookie on each response. Pass its decoded value in this header. Alternatively, send the token as a _token field in the request body.Response
This endpoint does not return a JSON body. It responds with an HTTP redirect.| Outcome | Redirect |
|---|---|
| Successful logout | / (home page) |
| Not authenticated | /login |
| Missing / invalid CSRF token | 419 Page Expired |
- The user is logged out via
Auth::guard('web')->logout(). - The session is fully invalidated (
$request->session()->invalidate()). - A new CSRF token is generated (
$request->session()->regenerateToken()).