For "async" mode, the jobs will be pushed to database , in order to let the jobs render, you need to run Laravel Worker.
Development Run
php artisan queue:work
Production Run
Install supervisor and use this configuration
[program:docking-worker]
process_name=%(program_name)s_%(process_num)02d
command=php /<path-to-your-folder>/artisan queue:work --sleep=3 --tries=1 --timeout=120
autostart=true
autorestart=true
stopasgroup=true
killasgroup=true
user=laravel # you can change to your user here
numprocs=5
redirect_stderr=true
stdout_logfile=/var/log/docking-worker.log
stopwaitsecs=3600
Note: you can change the numprocs if you are going to deploy DocKing on a strong server.
Then, run these commands and supervisor will start the work