In Laravel's queue system, what happens to a job when its `tries` limit is exceeded?
-
A
It is moved to the 'failed_jobs' table
-
B
It is permanently deleted from the queue
-
C
It is re-queued indefinitely with exponential backoff
-
D
It triggers a JobFailed event and the app crashes