\Bixo\Shop\Policies\ServiceKitPolicy::class,// Bind Accessory policy \Bixo\Shop\Models\Accessory::class => \Bixo\Shop\Policies\AccessoryPolicy::class,// Bind SparePart policy \Bixo\Shop\Models\SparePart::class => \Bixo\Shop\Policies\SparePartPolicy::class, ]; /** * Register any package authentication / authorization services. * * @param \Illuminate\Contracts\Auth\Access\Gate $gate * * @return void */ public function boot(GateContract $gate) { parent::registerPolicies($gate); } }