We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1fda93 commit 56a7b11Copy full SHA for 56a7b11
resources/views/livewire/monitors/show.blade.php
@@ -1,6 +1,7 @@
1
<?php
2
3
use App\Jobs\CollectIssues;
4
+use App\Jobs\CreateMonitor;
5
use Livewire\Volt\Component;
6
use \App\Models\Monitor;
7
@@ -12,6 +13,7 @@ public function mount(Monitor $monitor)
12
13
{
14
$this->monitor = $monitor;
15
CollectIssues::dispatch($monitor);
16
+ CreateMonitor::dispatch($project);
17
}
18
19
public function open_pdf()
0 commit comments