Herkese Merhabalar Laravel 5.8 Kodluyorum
Writing Gates Kısmında
https://laravel.com/docs/5.8/authorization#writing-gates
Gate::resource Yok
Ancak Eski Sürümlerde
https://laravel.com/docs/5.7/authorization#writing-gates
Gate::resource Var
ben 5.8 kodluyorum vede gate::resource kullanıyorum şimdi o kod 5.8 sürümünde kalkmışmı oluyor ? ancak çalışıyor bende aklıma takıldı
şimdiden teşekkürler
benim kodumda böyle
public function boot()
{
$this->registerPolicies();
Gate::resource('services', 'App\Policies\ServicePolicy');
Gate::resource('customers', 'App\Policies\CustomerPolicy');
Gate::resource('news', 'App\Policies\NewsPolicy');
Gate::resource('projects', 'App\Policies\ProjectPolicy');
Gate::resource('users', 'App\Policies\UserPolicy');
Gate::resource('roles', 'App\Policies\RolePolicy');
}