12 lines
617 B
PHP
12 lines
617 B
PHP
<span class="inline-flex items-center rounded-md {{ $colorClasses['bg'] }} px-1.5 py-0.5 text-xs font-medium {{ $colorClasses['text'] }}"
|
|
@if($this->type)
|
|
x-init="Echo.private(`{{$this->type}}.@js($id)`).listen('Project{{ucfirst($this->type)}}Status', (e) => {
|
|
console.log(e.project{{ucfirst($this->type)}}.status);
|
|
$wire.dispatch('Badge:refresh');
|
|
});"
|
|
x-destroy="Echo.leaveChannel(`{{$this->type}}.@js($id)`);"
|
|
@endif
|
|
>
|
|
{{ $status }}
|
|
</span>
|