mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-05 16:02:34 +00:00
#591 - notification-channels
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user