JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "Authenticate-20251215221439.php"
Full Path: /home/palsarh/web/palsarh.in/public_html/app/Http/Middleware/Authenticate-20251215221439.php
File size: 434 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Http\Middleware;
use Illuminate\Auth\Middleware\Authenticate as Middleware;
use Illuminate\Http\Request;
class Authenticate extends Middleware
{
/**
* Get the path the user should be redirected to when they are not authenticated.
*/
protected function redirectTo(Request $request): ?string
{
return $request->expectsJson() ? null : route('register.form');
}
}