*/ protected $fillable = [ 'name', 'slug', 'description', ]; /** * Get the roles for the permission. */ public function roles(): BelongsToMany { return $this->belongsToMany(Role::class, 'role_permission') ->withTimestamps(); } }