SmartCane/laravel_app/resources/views/livewire/components/badge.blade.php
2024-05-28 16:59:35 +02:00

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>