I have multiple user entities (multiple tables):
App\Entity\Customer
App\Entity\Dealer
How to configured multiple user entity with JWT token?
encoders: App\Entity\Dealer: algorithm: bcrypt App\Entity\Customer: algorithm: bcryptproviders: dealer: entity: class: App\Entity\Dealer property: username customer: entity: class: App\Entity\Customer property: username