Hello ,
I am working on a platform where I have an annual subscription once a user signs up the account gets activated for one year and the end date gets saved in the database
is there a way/package to manage/deactivate the user's account on that date
the only way i have found is to use cron jobs
create a command that checks if the subscription has expired and run it daily with the scheduler. You would probably also have other jobs such as sending expiry warnings?
These should all be run from the Console/Kernel.php with the schedule called every minute.