Laravel_Queue
20分鐘學會Laravel的Queue功能 (pandalab.org)
修改設定檔 env.php -> 指定何種連接
queue.php 連接設定
建立table
# 建立 jobs table
php artisan queue:table
# 建立 failed-table
php artisan queue:failed-table
# 執行建立工作
php artisan migrate
建立job
#php artisan make:job {job name}
php artisan make:job TestGcm