I'm running Laravel 6 on Google App Engine Standard and trying to make Laravel Queues work with Google Tasks natively.
Currently I'm creating (dispatching) and handling tasks with custom classes, but I would like to use Google task as native Laravel Queues, so I can call Job::dispatch()
dispatch(new Job)
and use Mail, Notification with Queueable
. But unfortunately it is beyond my abilities and I can’t figure out how everything is interconnected in Laravel.