PATH:
home
/
lab2454c
/
.trash
/
core
/
app
/
Http
/
Middleware
<?php namespace App\Http\Middleware; use Illuminate\Auth\Middleware\Authenticate as Middleware; class AuthenticateApi extends Middleware { /** * Get the path the user should be redirected to when they are not authenticated. * * @param \Illuminate\Http\Request $request * @return string|null */ protected function redirectTo($request) { if (!$request->expectsJson()) { return route('api.unauthenticate'); } } }
[-] TrustProxies.php
[edit]
[-] CheckForMaintenanceMode.php
[edit]
[-] TrimStrings.php
[edit]
[+]
..
[-] RedirectIfAdmin.php
[edit]
[-] RedirectIfAuthenticated.php
[edit]
[-] RedirectIfNotAdmin.php
[edit]
[-] LanguageMiddleware.php
[edit]
[-] Authenticate.php
[edit]
[-] AuthenticateApi.php
[edit]
[-] EncryptCookies.php
[edit]
[-] PreventRequestsDuringMaintenance.php
[edit]
[-] CheckStatusApi.php
[edit]
[-] AllowRegistration.php
[edit]
[-] CheckStatus.php
[edit]
[-] Demo.php
[edit]
[-] VerifyCsrfToken.php
[edit]
[-] TrustHosts.php
[edit]