Viewing File: /home/ubuntu/vedadeals-backend-base/app/Http/Middleware/AdminAuthenticate.php

<?php

namespace App\Http\Middleware;

use Illuminate\Auth\Middleware\Authenticate as Middleware;

class AdminAuthenticate 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('admin.showLogin');
        }

        if (!Auth::guard("admin")->check()) {

            return redirect()->route('admin.showLogin');
        }
    }
}
Back to Directory File Manager