Auth::user()->tokens, ]); } public function rules(): array { return [ 'name' => 'required', 'scopes' => 'nullable|array', ]; } public function createToken(): void { Auth::user()->createToken($this->name, $this->scopes); } public function deleteToken($tokenId): void { Auth::user()->tokens()->where('id', $tokenId)->delete(); } public function getTokensProperty(): array { return Auth::user()->tokens; } }