What is the professional Laravel standard for handling jobs that fail after all retry attempts are exhausted?
-
A
Silently discard the failed job
-
B
Log to the `failed_jobs` table and implement the `failed()` method on the job class
-
C
Automatically retry indefinitely
-
D
Send the failure directly to the user's browser