Files
timebank-cc-public/app/Http/Livewire/Notification.php
Ronald Huynen 2547717edb Initial commit
2026-03-23 21:37:59 +01:00

21 lines
344 B
PHP

<?php
namespace App\Http\Livewire;
use Livewire\Component;
class Notification extends Component
{
public function dehydrate()
{
// Clear the session key after the component is rendered
session()->forget('notification');
}
public function render()
{
return view('livewire.notification');
}
}