#Laravel people. When using "create" policies in your views, do you do anything to avoid fully qualified classes?
E.g. `@can('create', \App\Models\User::class)`
E.g. `@can('create', \App\Models\User::class)`
Comments
@can(“user.create”)
Using named permissions that way is nice, but you don't get those automatically with Policy generation. So I would see that working well only until you have a whole bunch of permissions to manage.