Can someone guide me on how to implement a search bar in my Angular application to filter cards by name? Here is the link to my Stackblitz project for reference: https://stackblitz.com/edit/stackoverflowcom-a-60857864-6433166-dpaump
Below is a snippet from my Explore TS file where I have imported matcards and routers components from separate files:
import { Router } from '@angular/router';
import { WorkspaceService } from 'src/app/core/services/workspace.service';
import { Workspace, WorkspaceType } from 'src/app/shared/models/workspace.model';
Here is the HTML code snippet to display the cards:
<mc-workspace-card-list [workspaces] = "pubWorkspaces" [editable] = "false"></mc-workspace-card-list>
Here is a preview of how it looks currently:
[![enter image description here][1]][1]
Kindly note that I have not included the complete code in my Stackblitz file due to multiple components being involved. Any suggestions or assistance on how to implement the filter function for filtering cards based on name would be greatly appreciated by just analyzing the provided code and Stackblitz file.