Вход Регистрация
Файл: app/Models/VoteAnswer.php
Строк: 14
<?php

declare(strict_types=1);

namespace 
AppModels;

/**
 * Class VoteAnswer
 *
 * @property int id
 * @property int vote_id
 * @property string answer
 * @property int result
 */
class VoteAnswer extends BaseModel
{
    
/**
     * The table associated with the model.
     */
    
protected $table 'voteanswer';

    
/**
     * Indicates if the model should be timestamped.
     */
    
public $timestamps false;

    
/**
     * The attributes that aren't mass assignable.
     */
    
protected $guarded = ['id'];
}
Онлайн: 3
Реклама