allerta-vvf/backend/app/Models/TelegramBotNotifications.php

23 lines
407 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class TelegramBotNotifications extends Model
{
use HasFactory;
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'chat_id',
'type_team_state',
'last_message_hash'
];
}