Files
vuefilemanager/src/Domain/Notifications/Controllers/GetUserNotificationsController.php
2022-03-10 16:23:13 +01:00

16 lines
371 B
PHP

<?php
namespace Domain\Notifications\Controllers;
use App\Http\Controllers\Controller;
use Domain\Notifications\Resources\NotificationCollection;
class GetUserNotificationsController extends Controller
{
public function __invoke(): NotificationCollection
{
return new NotificationCollection(
auth()->user()->notifications
);
}
}