芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/www/vendor/laravel/jetstream/src/Role.php
key = $key; $this->name = $name; $this->permissions = $permissions; } /** * Describe the role. * * @param string $description * @return $this */ public function description(string $description) { $this->description = $description; return $this; } /** * Get the JSON serializable representation of the object. * * @return array */ public function jsonSerialize() { return [ 'key' => $this->key, 'name' => $this->name, 'description' => $this->description, 'permissions' => $this->permissions, ]; } }