<?php namespace Bixo\Collection\Providers; use Illuminate\Contracts\Auth\Access\Gate as GateContract; use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider; class AuthServiceProvider extends ServiceProvider { /** * The policy mappings for the package. * * @var array */ protected $policies = [ // Bind Collections policy \Bixo\Collection\Models\Collections::class => \Bixo\Collection\Policies\CollectionsPolicy::class,// Bind Property policy \Bixo\Collection\Models\Property::class => \Bixo\Collection\Policies\PropertyPolicy::class, ]; /** * Register any package authentication / authorization services. * * @param \Illuminate\Contracts\Auth\Access\Gate $gate * * @return void */ public function boot(GateContract $gate) { parent::registerPolicies($gate); } }