Created
November 28, 2017 17:31
-
-
Save Wpkenpachi/4970bbcc0b02203976d88e8adba6f0cf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers; | |
use Carbon\Carbon; | |
use Illuminate\Http\Request; | |
use App\Jobs\ManageEvents; | |
class TestController extends Controller | |
{ | |
public function task(){ | |
ManageEvents::dispatch()->delay( Carbon::now()->addMinutes(1) )->onConnection('database')->onQueue('calendar'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment