Return data from Laravel Jobs
问题 I am developing API on Laravel for mobile application. Methods will make requests to other API's , combine and filter data, changing it's structure etc. One of the requirements to app is to respond no more than 30 seconds, or not respond at all. So, I have to repeat requests as much as I have time. I trying to realize that with Laravel Queues, and currently have something like that in my Job class: private $apiActionName; public function __construct($apiActionName) { $this->apiActionName =