coolify/app/Livewire/Team/Notification/Index.php

14 lines
207 B
PHP
Raw Normal View History

2024-01-07 16:23:41 +01:00
<?php
namespace App\Livewire\Team\Notification;
use Livewire\Component;
class Index extends Component
{
public function render()
{
return view('livewire.team.notification.index');
}
}