View the products of the logged-in user

Symfony : 6.1.4 EasyAdmin :4.3.5 I try to display the products created by the logged in user. By default, all products are displayed regardless of the author. ProductCrudController.php class ProductCrudController extends AbstractCrudController { public static function getEntityFqcn(): string { return Product::class; } public function createIndexQueryBuilder(SearchDto $searchDto, EntityDto $entityDto, FieldCollection $fields, FilterCollection $filters): QueryBuilder { $response… Read More View the products of the logged-in user