#591 - notification-channels

This commit is contained in:
Saeed Vaziry
2025-05-19 20:05:38 +02:00
parent 563b9c5909
commit cdc012c270
16 changed files with 611 additions and 100 deletions

View File

@ -3,6 +3,7 @@
namespace App\Models;
use App\Notifications\NotificationInterface;
use Database\Factories\NotificationChannelFactory;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
@ -14,11 +15,11 @@
* @property array<string, mixed> $data
* @property string $label
* @property bool $connected
* @property int $project_id
* @property ?int $project_id
*/
class NotificationChannel extends AbstractModel
{
/** @use HasFactory<\Database\Factories\NotificationChannelFactory> */
/** @use HasFactory<NotificationChannelFactory> */
use HasFactory;
use Notifiable;