Operation using a grid
src
├── BookStore
│ ├── Application
│ │ └── Query
│ │ ├── FindBooksQuery.php
│ │ └── FindBooksQueryHandler.php
│ ├── Domain
│ └── Infrastructure
│ └── Sylius
│ └── Grid
│ ├── Filter
│ │ ├── AuthorFilter.php
│ │ └── AuthorFilterType.php
│ ├── BookGrid.php
│ └── BookGridProvider.php
└── Shared
└── Infrastructure
└── Sylius
└── Grid
└── GridPageResolver.phpBook list

Create a page helper
Create the BookGridProvider
Create the BookGrid
Add the grid on the Book Resource
Create the Author filter type
Create the Author filter
Use the Author Filter on the Grid provider
Last updated
Was this helpful?