9318cac189
fix: containerStatusJob fix: service form
17 lines
286 B
PHP
17 lines
286 B
PHP
<?php
|
|
|
|
namespace App\Http\Livewire\Project\Service;
|
|
|
|
use Livewire\Component;
|
|
|
|
class Modal extends Component
|
|
{
|
|
public function checkStatus() {
|
|
$this->emit('checkStatus');
|
|
}
|
|
public function render()
|
|
{
|
|
return view('livewire.project.service.modal');
|
|
}
|
|
}
|