17 lines
366 B
PHP
17 lines
366 B
PHP
@props([
|
|
'notification',
|
|
])
|
|
|
|
<div
|
|
x-data="notificationComponent({ notification: @js($notification) })"
|
|
{{
|
|
$attributes
|
|
->merge([
|
|
'wire:key' => "{$this->getId()}.notifications.{$notification->getId()}",
|
|
], escape: false)
|
|
->class(['pointer-events-auto invisible'])
|
|
}}
|
|
>
|
|
{{ $slot }}
|
|
</div>
|