Laravel Tutorials

Automatic Policy Resolution is Coming to Laravel 5.8

Published
Automatic Policy Resolution is Coming to Laravel 5.8 image

Starting in Laravel 5.8, as long as policies and models are in the conventional locations, you will not need to register them in the AuthServiceProvider class:

In Laravel 5.8, as long as your policies and models are in the conventional locations, you do not need to register policies in the AuthServiceProvider…

— Taylor Otwell (@taylorotwell) February 18, 2019

If you have your models or policies in nonconventional locations, you can customize the policy guessing logic used to “look up” policies via the Gate:

Gate::guessPolicyNamesUsing(function ($class) {
// Do stuff
return $policyClass;
});

Laravel 5.7 determines policies from a configuration array found in the AuthServiceProvider with the model as the key mapping to the associated policy:

protected $policies = [
'App\Model' => 'App\Policies\ModelPolicy'
];

You can continue to use the $policies array to define your policies manually in Laravel 5.8, however, if you create new policies using the typical class path conventions for models and policies you don’t have to worry about adding additional policies to the configuration.

If you’re interested in the code that made this feature possible, here are a few commits you might want to check out:

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Sponsored

laravelcloud logo
Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Visit Laravel Cloud

The latest

View all →
Agent Run Observability in Laravel AI SDK 0.11 image

Agent Run Observability in Laravel AI SDK 0.11

Read article
Debounced Queued Event Listeners in Laravel image

Debounced Queued Event Listeners in Laravel

Read article
Statamic Mailables Viewer Previews Laravel Emails in the Control Panel image

Statamic Mailables Viewer Previews Laravel Emails in the Control Panel

Read article
Laravel Tackle: Run an AI Coding Agent in Your Laravel App image

Laravel Tackle: Run an AI Coding Agent in Your Laravel App

Read article
Queue::forward(): Reroute Laravel Queues in One Place image

Queue::forward(): Reroute Laravel Queues in One Place

Read article
Laravel Read-Through Filesystem: Lazy Storage Migration image

Laravel Read-Through Filesystem: Lazy Storage Migration

Read article