Can queue in Laravel 5.2 have a return value? I need all data that processed in the queue has a return value. Is it possible?
Example that I needed : If the user request has been processed, so the results (form the database) will be returned to the user.
I read the documentation in (https://laravel.com/docs/5.2/queues) but the example described here is an asynchronous model (without return value).
Please advise.. Thank you.
