add notifications logic and add support of both JWT and Sanctum

This commit is contained in:
root
2026-03-11 01:20:31 -04:00
parent f6be51576c
commit 182036cc41
141 changed files with 8685 additions and 648 deletions
@@ -0,0 +1,20 @@
<?php
namespace App\Http\Requests\Notifications;
use App\Http\Requests\ApiFormRequest;
class NotificationActiveRequest extends ApiFormRequest
{
public function authorize(): bool
{
return $this->user() !== null;
}
public function rules(): array
{
return [
'target_group' => ['nullable', 'string', 'max:50'],
];
}
}