How to check why a Laravel job fails?
I have the following Job: <?php namespace AppJobs; use GuzzleHttpClient; use IlluminateBusQueueable; use IlluminateContractsQueueShouldQueue; use IlluminateFoundationBusDispatchable; use IlluminateQueueInteractsWithQueue; use IlluminateQueueSerializesModels; use IlluminateSupportFacadesDB; class SendSMSJob implements ShouldQueue { use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; private $mobile; private $code; private $temp; private $token2;…