<?php

namespace App\Http\Requests;

class AuthorizedRequest extends RestRequest
{
    /**
     * Determine if the user is authorized to make this request.
     */
    public function authorize(): bool
    {
        return cache()->remember('isSessionAuthorized'.session()->id(), 5, function () {
            return auth()->check();
        });
    }
}