\Inventory\Item\Policies\UnitPolicy::class,// Bind Item policy 'Inventory\Item\Models\Item' => \Inventory\Item\Policies\ItemPolicy::class,// Bind Category policy 'Inventory\Item\Models\Category' => \Inventory\Item\Policies\CategoryPolicy::class, ]; /** * Register any package authentication / authorization services. * * @param \Illuminate\Contracts\Auth\Access\Gate $gate * * @return void */ public function boot(GateContract $gate) { parent::registerPolicies($gate); } }