Authorize

class Authorize (View source)

Properties

protected Factory $auth The authentication factory instance.
protected Gate $gate The gate instance.

Methods

void __construct(Factory $auth, Gate $gate)

Create a new middleware instance.

mixed handle(Request $request, Closure $next, string $ability, array|null $models)

Handle an incoming request.

array|string|Model getGateArguments(Request $request, array|null $models)

Get the arguments parameter for the gate.

string|Model getModel(Request $request, string $model)

Get the model to authorize.

bool isClassName(string $value)

Checks if the given string looks like a fully qualified class name.

Details

void __construct(Factory $auth, Gate $gate)

Create a new middleware instance.

Parameters

Factory $auth
Gate $gate

Return Value

void

mixed handle(Request $request, Closure $next, string $ability, array|null $models)

Handle an incoming request.

Parameters

Request $request
Closure $next
string $ability
array|null $models

Return Value

mixed

Exceptions

AuthenticationException
AuthorizationException

protected array|string|Model getGateArguments(Request $request, array|null $models)

Get the arguments parameter for the gate.

Parameters

Request $request
array|null $models

Return Value

array|string|Model

protected string|Model getModel(Request $request, string $model)

Get the model to authorize.

Parameters

Request $request
string $model

Return Value

string|Model

protected bool isClassName(string $value)

Checks if the given string looks like a fully qualified class name.

Parameters

string $value

Return Value

bool

© Taylor Otwell
Licensed under the MIT License.
Laravel is a trademark of Taylor Otwell.
https://laravel.com/api/5.3/Illuminate/Auth/Middleware/Authorize.html