coolify/app/Livewire/Project/Service/Modal.php

17 lines
285 B
PHP
Raw Normal View History

2023-09-21 21:30:13 +02:00
<?php
2023-12-07 19:06:32 +01:00
namespace App\Livewire\Project\Service;
2023-09-21 21:30:13 +02:00
use Livewire\Component;
class Modal extends Component
{
public function checkStatus() {
2023-12-07 19:06:32 +01:00
$this->dispatch('checkStatus');
2023-09-21 21:30:13 +02:00
}
public function render()
{
return view('livewire.project.service.modal');
}
}