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