Files
data-collection-terminal/vendor/filament/notifications/resources/views/components/notification.blade.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>