“Laravel ogranicza trasę” Kod odpowiedzi

Laravel ogranicz metody trasy

   public function __construct()
    {
        $this->middleware('auth')->except(['index', 'show']);
    }
Funny Fox

Laravel ogranicza trasę

namespace App\Http\Middleware;

use App\Article;
use Closure;
use Illuminate\Contracts\Auth\Guard;

class AdminMiddleware
{
    /**
     * The Guard implementation.
     *
     * @var Guard
     */
    protected $auth;

    /**
     * Create a new filter instance.
     *
     * @param  Guard  $auth
     * @return void
     */
    public function __construct(Guard $auth)
    {
        $this->auth = $auth;
    }

    /**
     * Handle an incoming request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Closure  $next
     * @return mixed
     */
    public function handle($request, Closure $next)
    {
        if ($this->auth->getUser()->type !== "admin") {
            abort(403, 'Unauthorized action.');
        }

        return $next($request);
    }
}
Nice Newt

Odpowiedzi podobne do “Laravel ogranicza trasę”

Pytania podobne do “Laravel ogranicza trasę”

Więcej pokrewnych odpowiedzi na “Laravel ogranicza trasę” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu